Mutations and GraphQL Authorization
Mutations with authorization work like queries. But because mutations involve a state change in the database, it’s important to understand when the authorization rules are applied and what they mean.
We’re overhauling Dgraph’s docs to make them clearer and more approachable. If you notice any issues during this transition or have suggestions, please let us know.
Mutations with authorization work like queries. But because mutations involve a state change in the database, it’s important to understand when the authorization rules are applied and what they mean.
Add
Rules for add
authorization state that the rule must hold of nodes created by
the mutation data once committed to the database.
For example, a rule such as the following:
… states that if you add a new to-do list item, then that new to-do must
satisfy the add
rule, in this case saying that you can only add to-do list
items with yourself as the author.
Delete
Delete rules filter the nodes that can be deleted. A user can only ever delete a
subset of the nodes that the delete
rules allow.
For example, the following rule states that a user can delete a to-do list item
if they own it, or they have the ADMIN
role:
When using these types of rules, a mutation such as the one shown below will behave differently. depending on which user is running it:
- For most users, the following mutation deletes the posts that contain the term “graphql” and are owned by the user who runs the mutation, but doesn’t affect any other user’s to-do list items
- For an admin user, the following mutation deletes any posts that contain the term “graphql”, regardless of which user owns these posts
When adding data, what matters is the resulting state of the database, when deleting, what matters is the state before the delete occurs.
Update
Updates have both a before and after state that can be important for authorization.
For example, consider a rule stating that you can only update your own to-do
list items. If evaluated in the database before the mutation (like the delete
rules) it would prevent you from updating anyone elses to-do list items, but it
does not stop you from updating your own to-do items to have a different
owner
. If evaluated in the database after the mutation occurs, like for add
rules, it would prevent setting the owner
to another user, but would not
prevent editing other’s posts.
Currently, Dgraph evaluates update
rules before the mutation.
Update and add mutations
Update mutations can also insert new data. For example, you might allow a mutation that runs an update mutation to add a new to-do list item:
Because a mutation updates a user’s to-do list by inserting a new to-do list item, it would have to satisfy the rules to update the author and the rules to add a to-do list item. If either fail, the mutation has no effect.
Was this page helpful?