Select professional details

Select professional details for a person.

Explanation

Person IDs are retrieved for a single contact along with their relevant professional information.

query GetProfessionalDetails($personId: Int!) {
  person(id: $personId) {
    id
    professionalAffiliations {
      affiliation
    }
    qualificationsAndHonoursAfterNames
    roleFulfillments {
      role
      organization
    }
  }
}

Define your person contact ID variable:

{
  "personId": YOUR_PERSON_ID_HERE
}

Last updated