OBJECT

User

User type.

link GraphQL Schema definition

  • type User {
  • # The unique id of user.
  • id: Int!
  • # The unique login of user.
  • username: String!
  • # The first name of user.
  • first_name: String
  • # The last name of user.
  • last_name: String
  • # The email of user.
  • email: String
  • # The phone number of user.
  • phone: String
  • # Date of account creation.
  • date_joined: String!
  • # Date of last user's connection.
  • last_login: String
  • # Account status: if the account is disable then the user cannot get a token.
  • is_active: Boolean
  • # Super user account.
  • is_superuser: Boolean
  • # List of user's groups.
  • groups: [Group!]
  • # List of user's permissions.
  • permissions: [Permission!]
  • }