Files
automatisch/packages/web/src/graphql/queries/get-permission-catalog.ee.js
2024-02-29 09:38:32 +00:00

21 lines
323 B
JavaScript

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