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

graphql.kickstart.servlet.osgi.GraphQLQueryProvider Maven / Gradle / Ivy

package graphql.kickstart.servlet.osgi;

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