But not I have no result, but if I do:
QueryBuilder query = QueryBuilder(ParseObject('Class'))
..whereEqualTo('field', data[0]);
I got result, 'field' is an string type on DB.
I try with: QueryBuilder query = QueryBuilder(ParseObject('Class'))
..whereNotContainedIn('field', data);
and I have the expected result, only whereContainedIn not working, with this, but is work when an try whit 'objectId'.
I would like to point out that this:
const query = new Parse.Query('Class');
query.containedIn('field', data);
work correctly on parse server cloud code, it's only with whereContainedIn on flutter_parse_sdk that it doesn't work.
Steps to reproduce
Try whereContainedIn with another string field that objectId.
❌ Please fill out all fields with a placeholder FILL_THIS_OUT, otherwise your issue will be closed. If a field does not apply to the issue, fill in n/a.
New Issue Checklist
Issue Description
I use on parse_flutter_sdk
List data = ["test1", "test2"]
QueryBuilder query = QueryBuilder(ParseObject('Class'))
..whereContainedIn('field', data);
But not I have no result, but if I do: QueryBuilder query = QueryBuilder(ParseObject('Class'))
..whereEqualTo('field', data[0]);
I got result, 'field' is an string type on DB.
I try with: QueryBuilder query = QueryBuilder(ParseObject('Class'))
..whereNotContainedIn('field', data);
and I have the expected result, only whereContainedIn not working, with this, but is work when an try whit 'objectId'.
I would like to point out that this: const query = new Parse.Query('Class'); query.containedIn('field', data); work correctly on parse server cloud code, it's only with whereContainedIn on flutter_parse_sdk that it doesn't work.
Steps to reproduce
Try whereContainedIn with another string field that objectId.
Actual Outcome
Expected Outcome
Environment
Parse Flutter SDK
7.0.0
3.13.9
3.1.5
FILL_THIS_OUT
Server
FILL_THIS_OUT
Logs