![]() |
VOOZH | about |
dotnet add package GraphQL.Authorization --version 8.0.0
NuGet\Install-Package GraphQL.Authorization -Version 8.0.0
<PackageReference Include="GraphQL.Authorization" Version="8.0.0" />
<PackageVersion Include="GraphQL.Authorization" Version="8.0.0" />Directory.Packages.props
<PackageReference Include="GraphQL.Authorization" />Project file
paket add GraphQL.Authorization --version 8.0.0
#r "nuget: GraphQL.Authorization, 8.0.0"
#:package GraphQL.Authorization@8.0.0
#addin nuget:?package=GraphQL.Authorization&version=8.0.0Install as a Cake Addin
#tool nuget:?package=GraphQL.Authorization&version=8.0.0Install as a Cake Tool
👁 codecov
👁 Nuget
👁 Nuget
👁 GitHub Release Date
👁 GitHub commits since latest release (by date)
👁 Size
👁 GitHub contributors
👁 Activity
👁 Activity
👁 Activity
A toolset for authorizing access to graph types for GraphQL.NET.
Provides the following packages:
| Package | Downloads | NuGet Latest |
|---|---|---|
| GraphQL.Authorization | 👁 Nuget |
👁 Nuget |
You can get all preview versions from GitHub Packages. Note that GitHub requires authentication to consume the feed. See here.
AddAuthorization on the provided IGraphQLBuilder inside AddGraphQL extension method.ClaimsPrincipal through ExecutionOptions.User.AuthorizationSettings.IProvideMetadata:
AuthorizeWithPolicy(string policy) extension methodAuthorizeAttribute attribute if using Schema + Handler syntax.AuthorizationValidationRule will run and verify the policies based on the registered policies.IAuthorizationRequirement.@skip and @include directives are ignored; all selected fields of the selected operation will
be checked for authentication requirements, including referenced fragments. (Other operations
in the same document will correctly be skipped.)
This authorization framework only supports policy-based authorization. It does not support role-based authorization, or the
[AllowAnonymous] attribute/extension, or the [Authorize] attribute/extension indicating authorization is required
but without specifying a policy. It also does not integrate with ASP.NET Core's authorization framework.
The GraphQL.Server repository contains an authorization rule which has the above missing features, intended for use with ASP.NET Core. It may also be tailored with custom authentication code if desired, rather than relying on ASP.NET Core's authentication framework.
Fully functional basic .
Fully functional .
GraphType first syntax - use AuthorizeWithPolicy extension method on IGraphType or IFieldType.
public class MyType : ObjectGraphType
{
public MyType()
{
this.AuthorizeWithPolicy("AdminPolicy");
Field<StringGraphType>("name").AuthorizeWithPolicy("SomePolicy");
}
}
AuthorizeAttribute attribute on type, method or property.[Authorize("MyPolicy")]
public class MutationType
{
[Authorize("AnotherPolicy")]
public async Task<string> CreateSomething(MyInput input)
{
return await SomeMethodAsync(input);
}
[Authorize("SuperPolicy")]
public string SomeProperty => Guid.NewGuid().ToString();
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on GraphQL.Authorization:
| Package | Downloads |
|---|---|
|
VirtoCommerce.ExperienceApiModule.Core
Experiene API functionality |
|
|
VirtoCommerce.Exp.ExtensionSamples
Package Description |
|
|
VirtoCommerce.Xapi.Core
Experiene API functionality |
|
|
SER.Graphql.Reflection.NetCore
This is a complement to graphql-dotnet (https://github.com/graphql-dotnet/graphql-dotnet) to avoid boilerplate |
|
|
Graphity
A .NET 6+ library that integrates GraphQL and Entity Framework Core with minimal effort |
Showing the top 1 popular GitHub repositories that depend on GraphQL.Authorization:
| Repository | Stars |
|---|---|
|
JuergenGutsch/graphql-aspnetcore
ASP.NET Core MiddleWare to create a GraphQL end-point
|
| Version | Downloads | Last Updated |
|---|---|---|
| 8.0.0 | 236,844 | 8/22/2024 |
| 7.0.0 | 504,234 | 2/8/2023 |
| 5.0.0 | 450,787 | 5/11/2022 |
| 4.0.0 | 1,425,331 | 4/28/2021 |
| 3.1.0 | 589,459 | 11/3/2020 |
| 3.0.44 | 11,148 | 11/1/2020 |
| 3.0.43 | 89,522 | 9/2/2020 |
| 3.0.40-preview-40 | 10,272 | 5/14/2020 |
| 3.0.39-preview-39 | 110,094 | 1/28/2020 |
| 3.0.38-preview-38 | 145,083 | 9/19/2019 |
| 3.0.35-preview-35 | 2,680 | 6/4/2019 |
| 2.1.29 | 639,447 | 1/18/2019 |
| 2.0.27 | 98,904 | 10/19/2018 |
| 1.1.26 | 53,823 | 8/24/2018 |
| 1.0.21 | 3,658 | 8/18/2018 |
| 1.0.20 | 6,322 | 8/15/2018 |
| 1.0.16-alpha-16 | 6,231 | 6/13/2018 |
| 1.0.10-alpha-10 | 8,968 | 9/18/2017 |
| 1.0.6-alpha-6 | 1,990 | 8/2/2017 |