
graphql.servlet.GraphQLQueryProvider Maven / Gradle / Ivy
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();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy