ASP.Net Core GraphQL Middleware
1.0.0
ASP.Net Core GraphQL الوسيطة
الاستخدام: في Startup.cs الخاص بك في طريقة Configure()
app . UseGraphQL ( new GraphQLOptions
{
GraphQLPath = "/graphql" ,
Schema = new Schema { Query = new StarWarsQuery ( ) }
} ) ;
app . UseGraphiQL ( new GraphiQLOptions ( )
{
GraphiQLPath = "/graphiql"
} ) ;