hi @alisha_liu !!
This is how you can filter with multiple conditions in our typescript client
So the syntax for deleteMany is similar, you can just pass a Filters.and
, like so:
// delete many with multiple conditions
const query = await collection.data.deleteMany(
Filters.and(
collection.filter.byProperty('category').equal('places'),
collection.filter.byProperty('answer').equal('Brazil')
)
)
Let me know if that helps!
Thanks!