You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A new search query is sent with each letter typed, and the collection view auto-updates
(as long as the query is valid)
You can filter items using the query syntax
Filters are automatically syntax-highlighted
There will also be a "Filters" expansion panel to set these through the UI
"Sort by" dropdown: Artist A-Z, Plays, Rating
Advanced: Each search query should not be grabbing full item info, just the IDs (since some item info will already be in browser session, and this will allow for smoother performance)
in:user/afantano
in:user/afantano/loved-list # This is a view within a user's collection
Seeing your play stats (note: you can sort by plays in the dropdown menu):
plays-gt:400
plays-after:2020-01-01 plays-before:2021-01-01 # Only count plays in 2020
plays-in:2020 # Same as above
Identifiers
(These are filters that can only return one or zero items, so all other filters will be ignored)
id:
mbid:
rymId:
spotifyId:
Basic
[date-qualifier] = before/after/in: (YYY0s, YYYY, YYYY-MM, YYYY-MM-DD), on: (YYYY-MM-DD)
"gt" and "lt" will probably equate to "greater/less than or equal to" instead of "greater/less than", because this is probably the more common use case
[custom-field]: Any custom field that the user has created, along with any valid value.
in: (user/[user] or user/[user]/[view]) Whether the item also exists in another user's collection
get:artists/items/tracks Which type of result should be returned (default: items)
plays-[before/after]: This can be used to create a date range for plays, similar to Last.fm's functionality. (This will not be possible until we are storing play/scrobble data which is way in the future)
view:[view] Whether the item exists in a view (which is basically a saved filter query)
The text was updated successfully, but these errors were encountered:
UI Features
Query syntax (WIP)
Example queries
Searching for a specific album:
Browsing:
Comparing collections:
Seeing your play stats (note: you can sort by plays in the dropdown menu):
Identifiers
(These are filters that can only return one or zero items, so all other filters will be ignored)
Basic
Advanced
The text was updated successfully, but these errors were encountered: