ASP.Net Core GraphQL Middleware

其他类别 2025-07-23

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"
});
下载源码

通过命令行克隆项目:

git clone https://github.com/wis/ASP.Net-Core-GraphQL-Middleware.git