Skip to main content

$gte

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

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