Files
automatisch/packages/web/src/graphql/queries/get-permission-catalog.ee.ts
2023-08-03 19:39:48 +02:00

22 lines
324 B
TypeScript

import { gql } from '@apollo/client';
export const GET_PERMISSION_CATALOG = gql`
query GetPermissionCatalog {
getPermissionCatalog {
subjects {
key
label
}
conditions {
key
label
}
actions {
label
key
subjects
}
}
}
`;