ASP.Net Core GraphQL Middleware
1.0.0
Intergiciel GraphQL ASP.Net Core
utilisation : dans votre Startup.cs dans la méthode Configure()
app . UseGraphQL ( new GraphQLOptions
{
GraphQLPath = "/graphql" ,
Schema = new Schema { Query = new StarWarsQuery ( ) }
} ) ;
app . UseGraphiQL ( new GraphiQLOptions ( )
{
GraphiQLPath = "/graphiql"
} ) ;