offset
The offset
method enables you to offset the query by a certain number of records.
const users = await User.offset(30).all()
This is usually used in concert with limit
to provide functional pagination.
const users = await User.limit(10).offset(30).all()