Files
twenty/front/src/modules/users/graphql/mutations/updateAllowImpersonation.ts
T
Weiko 24e5132029 Moving queries into dedicated files (#1210)
* Moving queries into dedicated files

* fix ci
2023-08-14 19:31:20 -07:00

11 lines
268 B
TypeScript

import { gql } from '@apollo/client';
export const UPDATE_ALLOW_IMPERSONATION = gql`
mutation UpdateAllowImpersonation($allowImpersonation: Boolean!) {
allowImpersonation(allowImpersonation: $allowImpersonation) {
id
allowImpersonation
}
}
`;