-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to query rows with array keys which equals empty array [] #6514
Comments
Hi! @hybeats . My workaround to make these types of queries is the following: const pipeline = [{ match: { books: { $eq: [] } } }];
const shelfs = await query.aggregate(pipeline);
return shelfs; @davimacedo Maybe it will be good to query with equalTo: [] method. |
@dplewis Is this an issue with Parse JS SDK? |
@hybeats Sorry for the late reply. Can you provide sample code or write up a failing test? |
@dplewis I tried this code, without a successful response. const query = new Parse.Query('Shelf');
query.equalsTo('books', []);
const shelfs = await query.find();
return shelfs; |
Could you please help me anyone |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Any news about this? The aggregate workaround doesn't work for me because I put this query in an OR query. |
@gcostaapps If you experience this issue with the latest version of Parse Server could you please open a new issue so we can investigate this? |
Still happens, version 5.3.3 |
Could you open a PR against |
Thanks for opening this issue!
|
Is it fixed with the latest versions? |
We don't know. If someone could open a PR with a failing test, that would help us. |
Issue Description
Couldn't find a way to query rows with array keys equal to empty array.
For example:
I have class 'Shelf' with key 'books' type of Array
I have 2 rows. First row has books = [ { Pointer }, { Pointer } ]. Second row has books = []
How do i query second row?
The text was updated successfully, but these errors were encountered: