graphql.servlet.GraphQLQueryProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-java-servlet Show documentation
Show all versions of graphql-java-servlet Show documentation
relay.js-compatible GraphQL servlet
package graphql.servlet;
import graphql.schema.GraphQLFieldDefinition;
import java.util.Collection;
/**
* This interface is used by OSGi bundles to plugin new field into the root query type
*/
public interface GraphQLQueryProvider extends GraphQLProvider {
/**
* @return a collection of field definitions that will be added to the root query type.
*/
Collection getQueries();
}