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