> 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-person-details-and-contributing-works.md).

# 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:

```
{
  "personId": YOUR_PERSON_ID_HERE
}
```
