# Related Projects

## PotionDB

## Antidote Query Language (AQL)

A SQL-like interface for the AntidoteDB data store.

See the [repository](https://github.com/AntidoteDB/antidote_aql) for more information.

Example:

```sql
CREATE UPDATE-WINS TABLE Student (
    StudentID INT PRIMARY KEY,
    Name VARCHAR,
    Age INT DEFAULT 18,
    YearsLeft COUNTER_INT CHECK (YearsLeft > 0),
    Passport_id INTEGER FOREIGN KEY UPDATE-WINS REFERENCES Passport(id)
) PARTITION ON (Age);
```

## EdgeAnt


---

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

```
GET https://antidotedb.gitbook.io/documentation/related-projects.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
