OBJECT

WaitlistEntry

link GraphQL Schema definition

  • type WaitlistEntry implements Node {
  • id: ID!
  • # The phone number for this entry, stored in E.164 format.
  • phone: String!
  • firstName: String!
  • lastName: String!
  • email: String
  • # The NPI number for this entry
  • npiNumber: String
  • # The status of the entry
  • status: WaitlistEntryStatus!
  • createdAt: Time!
  • updatedAt: Time!
  • # The total number of NPI results found
  • totalNpiResults: Int!
  • npiSearchResults: [RegistryResult!]
  • }