OBJECT
User
User type.
link GraphQL Schema definition
- type User {
- # The unique id of user.
- : Int!
- # The unique login of user.
- : String!
- # The first name of user.
- : String
- # The last name of user.
- : String
- # The email of user.
- : String
- # The phone number of user.
- : String
- # Date of account creation.
- : String!
- # Date of last user's connection.
- : String
- # Account status: if the account is disable then the user cannot get a token.
- : Boolean
- # Super user account.
- : Boolean
- # List of user's groups.
- : [Group!]
- # List of user's permissions.
- : [Permission!]
- }