> 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-basic-person-details.md).

# Select basic person details

Select basic identifying details for a person.

## Explanation

Relevant identifying information is retrieved for a single contact, filtered by their name.

```
query GetPersonDetails {
  contacts(contactSearch: {personNameCont: "Cate"}) {
    id
    name
    keyNames
    gender
    isni
    notes {
      noteText
    }
  }
}
```
