12 lines
203 B
TypeScript
12 lines
203 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const UPDATE_ROLE = gql`
|
|
mutation UpdateRole($input: UpdateRoleInput) {
|
|
updateRole(input: $input) {
|
|
id
|
|
name
|
|
description
|
|
}
|
|
}
|
|
`;
|