All Downloads are FREE. Search and download functionalities are using the official Maven repository.

graphql.servlet.GraphQLQueryProvider Maven / Gradle / Ivy

There is a newer version: 6.1.3
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy