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.
Sometimes it's advantageous to get the shaped query results as a JSON structure instead of the native EdgeDB objects and types. Fortunately the only thing that's needed to achieve that is to cast the result of the query into json:
json
SELECT <json>( SELECT User { name, email, follows: { name, email } } FILTER .email = 'alice@tutorial.com' );