Skip to content
This repository has been archived by the owner on Aug 31, 2019. It is now read-only.

wis/ASP.Net-Core-GraphQL-Middleware

Repository files navigation

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"
});

Releases

No releases published

Packages

No packages published

Languages