Skip to main content

$contains

Find all records where the value matches a given value (case insensitive).

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