INPUT_OBJECT
SignupInputV3
link GraphQL Schema definition
- input SignupInputV3 {
- # The user's email address. Must be unique across users
- : String
- # The user's phone number. Must be unique across users
- : String!
- : String
- : String
- # The user's NPI number. Must be unique across users
- : String
- # The user's credential, usually MD, DO, etc
- : String
- # The user's taxonomy code in the NPI database
- : String
- # The user's taxonomy description in the NPI database. If blank, will be populated
- # via the taxonomyCode
- : String
- # The user's username/handle. Optional, if not provided a handle will be generated
- # automatically
- : String
- # The Image ID of the user's avatar
- : Int
- : String!
- : Boolean
- # The primary practice state for the user
- : String
- : UserType
- : ID
- : String
- : Boolean!
- : Boolean!
- # If provided, indicates that this signup is being converted from an anonymous
- # user session.
- # This is the session ID of the anonymous user, returned from the
- # `createAnonymousUser` mutation.
- # The anonymous user education credits from oogpt (if any) will be re-assigned to
- # the new user.
- : String
- }