OBJECT

User

link GraphQL Schema definition

  • type User {
  • # Unique id for this user/account
  • id: ID
  • # Account/Sub-user login name
  • login: String
  • # Email address
  • email: String
  • companyName: String
  • firstName: String
  • lastName: String
  • address: String
  • postalCode: String
  • city: String
  • state: String
  • country: String
  • phone: String
  • # When this user/account was created
  • created: String
  • # When this user/account's details was last updated
  • updated: String
  • # true if Triton CNS is enabled for account
  • triton_cns_enabled: Boolean
  • # lists all public keys we have on record for the specified account user
  • #
  • # Arguments
  • # name: name of the key to filter
  • keys(name: String): [Key]
  • }