Files
automatisch/packages/web/src/graphql/mutations/delete-role.ee.ts
2023-08-03 19:39:48 +02:00

8 lines
157 B
TypeScript

import { gql } from '@apollo/client';
export const DELETE_ROLE = gql`
mutation DeleteRole($input: DeleteRoleInput) {
deleteRole(input: $input)
}
`;