An in-depth look at everything there is to know about EdgeDB: data types, query language, schema and database setup, etc.
Install EdgeDB, create a simple schema, and write your first queries in under 5 minutes.
The quickest way to learn the key concepts of EdgeDB without installation, right in your browser.
An easy to follow book about using EdgeDB for an imaginary game based on the setting in Bram Stoker's 1897 book Dracula.
There are functions in EdgeDB that operate on whole sets. These are commonly known as "aggregate functions" in other databases.
Try out a few built-in aggregate functions:
SELECT count({'Hello', 'world'});
SELECT min({23, 7, 41});
SELECT max({23, 7, 41});