ASP.Net Core GraphQL Middleware
1.0.0
Middleware GraphQL Inti ASP.Net
penggunaan: di Startup.cs Anda dalam Metode Configure()
app . UseGraphQL ( new GraphQLOptions
{
GraphQLPath = "/graphql" ,
Schema = new Schema { Query = new StarWarsQuery ( ) }
} ) ;
app . UseGraphiQL ( new GraphiQLOptions ( )
{
GraphiQLPath = "/graphiql"
} ) ;