Skip to main content

updating

To update a record that already exists, you can use a combination of attribute setters and the #save method on your models to trigger updates.

import User from 'app/models/user'
const user = await User.first()

user.email = 'how@yadoin.biz'
await user.save()

To achieve this in one line, you can call the #update method.

await user.update({ email: 'how@yadoin.biz' })

Additionally, you can perform bulk updates like so:

await User.where({ email: ops.ilike('%chalupatowne%') }).update({ email: '' })