Skip to main content

transactions

Transactions can be built using any model class, but typcally would be done from the base Dream class, like so:

...

await ApplicationModel.transaction(async txn => {
const user = await User.txn(txn).create({ ... })
await Post.txn(txn).create({ user })
const post = await Post.txn(txn).first()
})