-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Authentication | ||
|
||
Authentication can be used as a guard on a field, query or mutation, restricting data access or actions for a specific group of users. | ||
|
||
Since the codebase uses TypeGraphQL, which relies heavily on decorators, authentication is also done using decorators. | ||
|
||
Authentication is done with use of `@Permission` decorator. This decorator takes function as an argument with permission object as a return value. | ||
|
||
For example: | ||
|
||
```lang=js | ||
@Permission(async (resolverData) => ({ | ||
or: [ | ||
{ | ||
type: 'global', | ||
permission: 'viewOperationMetadata', | ||
}, | ||
{ | ||
type: 'operation', | ||
permission: 'canViewMetadata', | ||
id: 11, | ||
}, | ||
], | ||
})) | ||
``` | ||
|
||
In this example, `id` field is hardcoded for demo purposes, but `resolverData` can be used to obtain the actual value. |