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

Latest commit

 

History

History
19 lines (15 loc) · 333 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 333 Bytes

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