mirror of
https://github.com/appy-one/acebase.git
synced 2026-05-25 06:02:14 -06:00
[GH-ISSUE #26] Query questions #24
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#24
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 @clibu on GitHub (Mar 24, 2021).
Original GitHub issue: https://github.com/appy-one/acebase/issues/26
I see I can
query()using like which is case-insensitive however I can't see a way to perform a case-insensitive sort.Is it possible to use our own custom query filter function. Something like
filter(key, operator, compare)whereoperatorwould be a function we'd provide and you'd pass itkeyandcompare. In nanoSQL you can add query functions.Finally what is the best way to iterate all nodes in a path, one at a time which is performant and doesn't uses lots of memory (doesn't cache). ex. Like
db.query('songs')to get every node, one at a time.