Skip to content
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

Open
hybeats opened this issue Mar 16, 2020 · 13 comments
Open

Unable to query rows with array keys which equals empty array [] #6514

hybeats opened this issue Mar 16, 2020 · 13 comments

Comments

@hybeats
Copy link
Contributor

hybeats commented Mar 16, 2020

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?

@santiagosemhan
Copy link

santiagosemhan commented Mar 19, 2020

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.

@santiagosemhan
Copy link

@dplewis Is this an issue with Parse JS SDK?

@dplewis
Copy link
Member

dplewis commented Mar 22, 2020

@hybeats Sorry for the late reply. Can you provide sample code or write up a failing test?

@santiagosemhan
Copy link

@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;

@VenkateshNani512
Copy link

VenkateshNani512 commented Apr 15, 2020

Could you please help me anyone
How to check array empty and array contain some value and undefined ?
in parse android
ArrayList list = new ArrayList();
list.add("CP");
query.whereDoesNotExist("businessPlatform");
query.whereContainedIn("businessPlatform", list);
This is not working How should i process this type of condition AND Operation is available in parse query ?

@stale
Copy link

stale bot commented May 30, 2020

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.

@stale stale bot added the wontfix label May 30, 2020
@stale stale bot closed this as completed Jun 6, 2020
@gcostaapps
Copy link

Any news about this? The aggregate workaround doesn't work for me because I put this query in an OR query.

@mtrezza
Copy link
Member

mtrezza commented Sep 29, 2021

@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?

@zivchen
Copy link
Contributor

zivchen commented Dec 15, 2022

Still happens, version 5.3.3
@santiagosemhan example is accurate, for array field with [] value

@mtrezza
Copy link
Member

mtrezza commented Dec 17, 2022

Could you open a PR against alpha with a failing test that demonstrates the issue? That would help us to address it.

@mtrezza mtrezza reopened this Dec 17, 2022
@parse-github-assistant
Copy link

Thanks for opening this issue!

  • ❌ Please edit your post and use the provided template when creating a new issue. This helps everyone to understand your post better and asks for essential information to quicker review the issue.

@tiavina-mika
Copy link

Is it fixed with the latest versions?

@mtrezza
Copy link
Member

mtrezza commented Dec 8, 2024

We don't know. If someone could open a PR with a failing test, that would help us.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

8 participants