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