> 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-graphql-api/developer-resources/public-graphql-schema.md).

# Public GraphQL schema

The public GraphQL schema of Navixy GraphQL API, split into one file for the shared types and one per product.

{% hint style="warning" %}
**Navixy GraphQL 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 %}

The GraphQL schema for Navixy GraphQL API is public and split into several parts:

* **Common resources** ([`nvx4-common.graphql`](https://raw.githubusercontent.com/Navixy/navixy-public-docs/main/api-docs/navixy-graphql-api/developer-resources/graphql-schema/nvx4-common.graphql)): Types and operations [shared by the entire API](/docs/navixy-graphql-api/core-api-reference.md).
* **Business Data Repository** ([`nvx4-api.graphql`](https://raw.githubusercontent.com/Navixy/navixy-public-docs/main/api-docs/navixy-graphql-api/developer-resources/graphql-schema/nvx4-api.graphql)): Types and operations specific to [Business Data Repository](/docs/navixy-graphql-api/business-data-repository/overview.md). This file also declares the `Query`, `Mutation`, and `Subscription` roots for the whole API.
* **Tracking** ([`nvx4-tracking.graphql`](https://raw.githubusercontent.com/Navixy/navixy-public-docs/main/api-docs/navixy-graphql-api/developer-resources/graphql-schema/nvx4-tracking.graphql)): Types and operations specific to [Tracking](/docs/navixy-graphql-api/tracking/overview.md).

## What the files are for

The files are GraphQL schema definition language, the same text that introspection returns. Download them to generate typed client code, to feed a GraphQL plugin in your editor, or to compare two versions of the API and see what changed. Read them together rather than one at a time: each product file uses types that the common file declares.

To explore the API without downloading anything, use [introspection](/docs/navixy-graphql-api/graphql-basics.md#introspection) from your own GraphQL client, or run queries in the [GraphQL Sandbox](https://api.navixy.dev/v4/graphql/sandbox).

## Versions

Each product file states its schema version in a comment on the third line, for example `# Version: 0.9.1`. The common file carries no version of its own, because it belongs to no product: it follows the version in `nvx4-api.graphql`. Check the version before you report a difference between the schema and this documentation.


---

# 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-graphql-api/developer-resources/public-graphql-schema.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.
