Skip to main content

$lte

Find all records where the value is less and equal to a given value.

const { data, error } = await kontenbase.service('posts').find({
where: {
total: { $lte: 10 },
},
})