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.
Scalar types are primitive individual types. Scalar type instances hold a single value, called a scalar value.
The standard EdgeDB scalar types are:
Numeric types:
int16
int32
int64
float32
float64
bigint
decimal
sequence
String type
Boolean type
Date and Time types:
datetime
duration
cal::local_datetime
cal::local_date
cal::local_time
cal::relative_duration
UUID type
JSON type
Enum types
See also scalar type SDL, DDL, introspection, and functions and operators.