ASP.Net-Core-GraphQL-Middleware icon indicating copy to clipboard operation
ASP.Net-Core-GraphQL-Middleware copied to clipboard

ASP.Net Core GraphQL Middleware

ASP.Net-Core-GraphQL-Middleware

ASP.Net Core GraphQL Middleware

usage: in your Startup.cs in the Configure() Method

app.UseGraphQL(new GraphQLOptions
{
    GraphQLPath = "/graphql" ,
    Schema = new Schema { Query = new StarWarsQuery() }
});

app.UseGraphiQL(new GraphiQLOptions()
{
    GraphiQLPath = "/graphiql"
});