Releases: josephwoodward/graphiql-dotnet
Releases · josephwoodward/graphiql-dotnet
v2.0.0 Release
- #44 - Upgraded to the latest version of GraphiQL which includes some new features.
- GraphQL API route and/or GraphiQL UI address can now be configured via Options using the IoC container
- #42 - Added a delegate that's executed before a request is resolved enabling options such as authentication, see these test for an example.
services.AddGraphiQl(x => x.IsAuthenticated = context =>
{
context.Response.Clear();
context.Response.StatusCode = 400;
context.Response.WriteAsync("This page requires authentication");
return Task.FromResult(false);
});
1.2.0
1.2.0-beta
#23 - Add ability to set the graphql path (thanks to @pouladpld for his PR to get this moving)
1.1.0 Release
This update allows adds support for .NET Standard 2.0 and netcoreapp2.0