Skip to main content

$nin

Find all records where the property does not match any of the given values.

const { data, error } = await kontenbase.service('posts').find({
where: {
name: { $nin: ['Ega'] },
},
})