Background
Framework: React Native
Library: Realm JS
I am writing a query to search whether an ID is included in a collection
following the official doc in https://static.realm.io/downloads/files/NSPredicateCheatsheet.pdf
Left hand expression must appear in collection specified by right hand expression. i.e. name IN {‘Milk’, ‘Eggs’, ‘Bread’}
Problem
When applying this query .filtered('subcategoryId IN {"a","b"}')
Render Error: Invalid predicate: 'subcategoryId IN {"a","b"}: syntax error, unexpected '{'
I've tried different syntax on the right side collection, still doesn't work.
Anyone has similar experience?
According to the documentation List Comparisons you just need to enter the parameters in the second argument of the function