OBJECT
User
A user account on the system
link GraphQL Schema definition
- type User {
- # The user's client account
- : Client!
- # The user's email address used to sign in to Consonance
- : String!
- # The user's first name from their Consonance profile
- : String
- # The unique Consonance identifier
- : Int!
- # Whether the user account is dormant
- : Boolean!
- # The user's last name from their Consonance profile
- : String
- # The user's manager
- : User
- # The number of times that the user fulfils a role
- #
- # Arguments
- # roleNameCont: Only return fulfillments where the role name
- # contains this value
- (: String): [RoleFulfillment!]!
- # The number of times that the role is fulfilled
- : Int!
- }