INPUT_OBJECT

SignupInputV4

link GraphQL Schema definition

  • input SignupInputV4 {
  • # The user's email address. Must be unique across users
  • email: String!
  • # The user's phone number. Must be unique across users
  • phone: String
  • firstName: String
  • lastName: String
  • # The user's NPI number. Must be unique across users
  • npiNumber: String
  • # The user's credential, usually MD, DO, etc
  • credential: String
  • # The user's taxonomy code in the NPI database
  • taxonomyCode: String
  • # The user's taxonomy description in the NPI database. If blank, will be populated
  • # via the taxonomyCode
  • taxonomyDesc: String
  • # The user's username/handle. Optional, if not provided a handle will be generated
  • # automatically
  • handle: String
  • # The Image ID of the user's avatar
  • profileImageID: Int
  • emailVerificationToken: String!
  • optsInToMarketing: Boolean
  • # The primary practice state for the user
  • state: String
  • userType: UserType
  • providerTypeID: ID
  • primaryLicenseNumber: String
  • optsInToMarketingSMS: Boolean!
  • optsInToNonMarketingSMS: 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.
  • fromAnonymousUserSession: String
  • }

link Require by