> For the complete documentation index, see [llms.txt](https://antidotedb.gitbook.io/documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://antidotedb.gitbook.io/documentation/related-projects.md).

# 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
