> For the complete documentation index, see [llms.txt](https://navixy.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://navixy.com/docs/navixy-repository-api/core-api-reference/actors.md).

# Actors

{% hint style="warning" %}
**Navixy Repository API is a work in progress.** This documentation is published for preview purposes only and doesn't reflect a stable release. Structure, field names, and behaviors are subject to change.
{% endhint %}

Actors represent entities that can perform actions in the system. This includes users (human operators) and integrations (API clients and automated systems).

## Queries

### me

Retrieves the currently authenticated actor.

```graphql
me: Actor!
```

**Output types:**

<details>

<summary>Actor</summary>

An entity that can perform actions and have permissions assigned.

**Implements:** [Node](/docs/navixy-repository-api/core-api-reference/common.md#type-node), [Titled](/docs/navixy-repository-api/core-api-reference/common.md#type-titled)

| Field   | Type      | Description                    |
| ------- | --------- | ------------------------------ |
| `id`    | `ID!`     | A globally unique identifier.  |
| `title` | `String!` | The display name of the actor. |

</details>

***

## Objects

### PersonName

Structured person name components following [W3C Personal Names guidance](https://www.w3.org/International/questions/qa-personal-names).

Examples by culture:

* US: givenNames="John", familyNames="Smith", middleName="Robert"
* Russia: givenNames="Иван", familyNames="Иванов", middleName="Петрович" (patronymic)
* Spain: givenNames="Juan Carlos", familyNames="García López" (paternal + maternal)
* China: givenNames="明" (Ming), familyNames="王" (Wang) — note: family name first in native order
* Iceland: givenNames="Björk", familyNames="Guðmundsdóttir" (patronymic as family name)

| Field         | Type      | Description                                                                                     |
| ------------- | --------- | ----------------------------------------------------------------------------------------------- |
| `givenNames`  | `String!` | The given name(s), also known as first name(s). May contain multiple names separated by spaces. |
| `familyNames` | `String!` | The family name(s), also known as surname(s) or last name(s). May contain multiple names.       |
| `middleName`  | `String`  | The middle name, patronymic, or additional name component.                                      |
| `fullName`    | `String!` | The full name formatted according to the user's locale preferences.                             |

***

### SystemActor

The built-in system actor used for automated operations.

**Implements:** [Actor](#type-actor), [Node](/docs/navixy-repository-api/core-api-reference/common.md#type-node), [Titled](/docs/navixy-repository-api/core-api-reference/common.md#type-titled)

| Field   | Type      | Description                    |
| ------- | --------- | ------------------------------ |
| `id`    | `ID!`     | A globally unique identifier.  |
| `title` | `String!` | The display name of the actor. |

***

## Interfaces

### Actor

An entity that can perform actions and have permissions assigned.

**Implements:** [Node](/docs/navixy-repository-api/core-api-reference/common.md#type-node), [Titled](/docs/navixy-repository-api/core-api-reference/common.md#type-titled)

| Field   | Type      | Description                    |
| ------- | --------- | ------------------------------ |
| `id`    | `ID!`     | A globally unique identifier.  |
| `title` | `String!` | The display name of the actor. |

***


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://navixy.com/docs/navixy-repository-api/core-api-reference/actors.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
