Hi guys is it possible to delete documents by filt...
# community-help
s
Hi guys is it possible to delete documents by filtering with
date
(string field) if it it contains for example 'May'
Something like:
Copy code
delete({ filter_by: 'date:=May' })
s
Will it also delete docs with string like 'May 12'
g
Hm, I think
:=
works as
strictly equal
Let's wait for someone from the team
j
You can use
{ filter_by: 'date: May' }
Which can filter docs that are not strictly equal, but contain the inputted string as a word.
1
s
Ok thanks 👍
you got it
j
Confirming that
:=
is indeed exact filtering.
:
is word-level contains filtering