INPUT_OBJECT

UserCreateMutation

link GraphQL Schema definition

  • input UserCreateMutation {
  • # Email address; this is the unique identifier
  • email: String!
  • # First name; should be real
  • first: String
  • # Last name; should be real
  • last: String
  • # Name if different than first last
  • name: String
  • # Optional external id for this org
  • externalId: String
  • # Mobile number with country code
  • mobile: String
  • # Brand identifier
  • brand: String
  • # orgId; ignored for external use
  • orgId: String
  • # Group id if desired
  • groupId: Uuid
  • # Timezone in tz database format
  • timezone: String
  • # Users gender: male|female|other
  • gender: String
  • # More detail if gender is other
  • genderDetail: String
  • # Date of birth
  • dob: LocalDate
  • # Optional title for this org
  • orgTitle: String
  • # Username (BETA); not required, must be globally unique if provided or will be
  • # rejected
  • username: String
  • # Creation date override; for use when importing existing users otherwise ignored
  • createdAt: DateTime
  • # groupHandle; ignored for external use
  • groupHandle: String
  • }

link Require by