Skip to main content

$notContains

Find all records where the value does not match a given value (case insensitive).

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