diff --git a/src/main/java/com/howtographql/hackernews/Query.java b/src/main/java/com/howtographql/hackernews/Query.java index 6b53e9f9..6deee200 100644 --- a/src/main/java/com/howtographql/hackernews/Query.java +++ b/src/main/java/com/howtographql/hackernews/Query.java @@ -1,13 +1,13 @@ package com.howtographql.hackernews; -import com.coxautodev.graphql.tools.GraphQLRootResolver; +import com.coxautodev.graphql.tools.GraphQLQueryResolver; import java.util.List; /** * Query root. Contains top-level queries. */ -class Query implements GraphQLRootResolver { +class Query implements GraphQLQueryResolver { private final LinkRepository linkRepository;