Hi, Is there way to filter an array field with an...
# community-help
c
Hi, Is there way to filter an array field with an exact match? e.g field name:
book_ids
document A:
[1, 2, 3]
document B:
[1, 2]
document C:
[1]
If I then filter using
book_ids:=[1]
, I only want to return only
Document C
since it's an exact match of [1] If I then filter using
book_ids:=[1, 2]
, I only want to return only
Document B
since it's an exact match of [1, 2] Thank you!