> For the complete documentation index, see [llms.txt](https://docs.quantumbyte.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.quantumbyte.ai/components/studio/data-editor.md).

# Data Editor

{% hint style="success" %}
Available in v3.1.1
{% endhint %}

The **Data Editor** enables users to design, view, and modify the data structure of their application in a simple, intuitive way. Instead of working directly with database schemas, users can describe their desired data model using natural language. The system interprets these descriptions to create or update entities, fields, relationships, and tables that define how information is stored and connected within the app.

Every change made in the Data Editor is reflected immediately in the underlying code, maintaining **one-to-one synchronization** between human-readable descriptions and the actual data definitions used by the system. This synchronization ensures that data models remain accurate, consistent, and aligned with the overall logic of the application.

For example, users can easily create a new entity such as “Customer,” specify its attributes (name, email, purchase history), and define relationships to other entities like “Orders” or “Products.” The system then generates the appropriate backend structures automatically.

By combining clarity and automation, the Data Editor gives both technical and non-technical users a complete understanding of how their app’s data operates, while removing the complexity of manual database management or code editing.


---

# 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://docs.quantumbyte.ai/components/studio/data-editor.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.
