Skip to Content

Authorization - Role Based Access Control

Published: 2022-05-23

Aside from injecting claims into Operations, WunderGraph also allows you to protect access to Operations via roles. This way, you can protect the execution of certain operations for groups of users.

The role based access control implementation is made up of 3 parts. First, you can define your own set of roles. Next, you're able to implement a custom hook to assign roles to users. Finally, the @rbac directive lets you attach rules to Operations to specify which user is allowed or denied access.

Find below an example of how implementing RBAC with WunderGraph looks like. By adding a single line of code, using the @rbac directive, you're able to protect the Operation with RBAC.

mutation ($email: String!)
@rbac(requireMatchAll: [superadmin])
{
deleteManymessages(where: {users: {is: {email: {equals: $email}}}}){
count
}
}

Read more on how to configure authorization, how to implement the post authentication hook to assign roles, or how to use the @rbac directive in the reference.


Product

Comparisons

Subscribe to our newsletter!

Stay informed when great things happen! Get the latest news about APIs, GraphQL and more straight into your mailbox.

© 2022 WunderGraph