mirror of
https://github.com/appy-one/acebase.git
synced 2026-05-25 06:02:14 -06:00
[GH-ISSUE #235] filter on nested data and IN operator for string type #105
Labels
No labels
IndexedDB
browser
bug
dependencies
documentation
duplicate
enhancement
feature request
indexes
indexes
invalid
pull-request
query
question
transaction logging
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/acebase#105
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @fabriciovasc on GitHub (Jul 12, 2023).
Original GitHub issue: https://github.com/appy-one/acebase/issues/235
I had two problems with query filter of collection. First example, I have nested object with 3 properties and I need to filter them.
Based on the docs and issue https://github.com/appy-one/acebase/issues/62 that should look something like:
But after the query I don't have any values. Is there another way to filter nested objects?
Second example, I have string property which can have multiple values and I try to filter using IN operator. That should look something like:
But after the query I don't have any values. Is there another way to filter string property with multiple values? Something like MongoDB query with $in operator