com.networknt.graphql.router.SchemaProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-router Show documentation
Show all versions of graphql-router Show documentation
A route handler for GraphQL endpoint
The newest version!
package com.networknt.graphql.router;
import graphql.schema.GraphQLSchema;
/**
* SchemaProvider interface that is used to inject schema implementation to the
* framework. The service module is responsible to inject implementation for each
* application.
*
* @author Steve Hu
*/
public interface SchemaProvider {
GraphQLSchema getSchema();
}