feat(auth): add user and role management
This commit is contained in:
11
packages/web/src/graphql/mutations/update-role.ee.ts
Normal file
11
packages/web/src/graphql/mutations/update-role.ee.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { gql } from '@apollo/client';
|
||||
|
||||
export const UPDATE_ROLE = gql`
|
||||
mutation UpdateRole($input: UpdateRoleInput) {
|
||||
updateRole(input: $input) {
|
||||
id
|
||||
name
|
||||
description
|
||||
}
|
||||
}
|
||||
`;
|
Reference in New Issue
Block a user