> For the complete documentation index, see [llms.txt](https://gp0.gitbook.io/graphql-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gp0.gitbook.io/graphql-docs/people/select-professional-details.md).

# 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
}
```
