| 12345678910111213141516171819202122232425262728 |
- type Query {
- roles(options: RoleListOptions): RoleList!
- role(id: ID!): Role
- }
- type Mutation {
- "Create a new Role"
- createRole(input: CreateRoleInput!): Role!
- "Update an existing Role"
- updateRole(input: UpdateRoleInput!): Role!
- }
- # generated by generateListOptions function
- input RoleListOptions
- input CreateRoleInput {
- code: String!
- description: String!
- permissions: [Permission!]!
- }
- input UpdateRoleInput {
- id: ID!
- code: String
- description: String
- permissions: [Permission!]
- }
|