OBJECT

PersonDetail

link GraphQL Schema definition

  • type PersonDetail {
  • # Person has accepted the VolunteerMatch terms and conditions
  • acceptTermsAndConditions: Boolean!
  • # 2 letter country code, defaults to US
  • country: String
  • # Persons email address
  • email: String!
  • # Persons first name
  • firstName: String!
  • id: Int
  • # Persons last name
  • lastName: String
  • # Persons phone number
  • phoneNumber: String
  • # Used when email is not the primary key to find volunteers. This must be enabled
  • # for your API key to be able to use it.
  • primaryKey: String
  • # Persons zipcode
  • zipCode: String!
  • }