Role
No description
type Role {
id: ID!
roleDefinition: RoleDefinition!
userId: Int!
access: RoleAccess!
createdAt: DateTime!
lastModifiedAt: DateTime!
createdBy: Int
lastModifiedBy: Int
}
Fields
Role.id
● ID!
non-null scalar
The unique identifier of the role
Role.roleDefinition
● RoleDefinition!
non-null object
The role definition for this role
Role.userId
● Int!
non-null scalar
The id of the user this role belongs to
Role.access
● RoleAccess!
non-null enum
The access for this role
Role.createdAt
● DateTime!
non-null scalar
Creation date
Role.lastModifiedAt
● DateTime!
non-null scalar
Last modified date
Role.createdBy
● Int
scalar
Role.lastModifiedBy
● Int
scalar
Returned By
role
query ● roleCreate
mutation ● roleUpdate
mutation
Member Of
RoleDefinition
object ● RoleResponse
object