OBJECT

ConnectionDetail

link GraphQL Schema definition

  • type ConnectionDetail {
  • # General comments
  • comments: String
  • # Contact information for user that initiated the connection in case it was not
  • # the volunteer. This user must already have a VolunteerMatch account
  • enlister: PersonDetail @deprecated( reason: "Not supported" )
  • # Number of hours volunteered
  • hours: [ConnectionHours]
  • # Opportunity id for this connection
  • oppId: Int!
  • # Answers to the opportunity custom questions
  • replies: [ReplyDetail]
  • # List of shifts that a volunteer has signed up for
  • shifts: [ShiftChoice]
  • # Contact information for the volunteer, if they do not currently have a
  • # VolunteerMatch account one will be created
  • volunteer: PersonDetail!
  • }