Hi, does Couchbase Lite 2.0.2 for Android have any kind of support for passing in arrays or lists into the QueryBuilder’s in() method?
For example, in the following query I’m trying to get all documents of type ‘user’ where the ‘user_id’ is in a user provided list:
String[] userIds = new String[]{"54", "72", "83"};
Query query = QueryBuilder.select(SelectResult.all()).from(DataSource.database(database)).where(Expression.property("type").equalTo(Expression.string("user")).and(Expression.property("user_id").in(userIds)))
If there’s no support for this, is this the correct forum for me to make a feature request?