For the complete documentation index, see llms.txt. This page is also available as Markdown.

Select person details and contributing works

Select person details and associated works.

Explanation

Person IDs are retrieved for a single contact along with their relevant details and any relevant associated works.

query GetPersonProfile($personId: Int!) {
  person(id: $personId) {
    id
    name
    biographicalNote
    contributions {
      workTitle
      role
    }
    notes {
      content
    }
    addresses {
      street
      city
      country
    }
    gender
    genderClarification
  }
}

Define your person contact ID variable:

Last updated