ops
ops is a special set of helper methods which can tie back to lower-level kysely queries, enabling you to pass more complex statements without leaving an ideal statement flow, like so:
await User.where({
email: ops.in(['burpcollaborator.net', 'howyadoin@gmail.biz']),
}).destroy()
await User.where({ email: ops.like('%burpcollaborator.net%') }).destroy()
await User.where({ email: ops.ilike('%burpcollaborator.net%') }).destroy()
await User.where({ id: ops.expression('<=', 23) }).destroy()