Timestamps
Timestamp fields are output-only fields that are automatically populated by the schema when a record is created or updated.
- A schema can declare a
created_atfield (set once, on creation). - A schema can declare an
updated_atfield (set on creation and on every update). updated_atcan be optional, in which case it is only updated when the field already has a value.
Examples
Try it in the browser
username is a lax field with a default. created_at and updated_at are populated automatically
from the timestamp resolver.
Loading playground…