Define your data in a few lines of schema. Durable workflows and server-rendered UI build on it for free — one entity, one running app.
# your data, defined once
entity Deal {
id: ulid
title: string
amount: u64
status: string
contact: Contact @relation
createdAt: DateTime @default(now())
@@search([title])
}
One schema makes the data — your workflows and UI just build on it.