Closed kwlayman closed 3 years ago
Need something like below but apparently AND is not supported like this: where:{ TAGS: 'test1', and:{ TAGS:'test2' } }
have you tried ?
where: [{
TAGS: 'test1'
}, {
TAGS: 'test2'
}]
That works! Thanks!
How to construct where clause to search for multiple values in array type multientry field?
I have a TAGS array-type field, multiEntry.
How do I construct a where clause to do an AND search for multiple tags?