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
{{ message }}
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
The problem with sorting is that you have to compile all the hits before you can sort them. Some underlying storage mechanisms for wallets support this, but some do not. And sorting would require that data be decrypted (because presumably you'd want sorting based on plaintext, not on the encrypted representation of the data). Thus, supporting sort would change the underlying requirements of wallet storage plugins in a fundamental way. That's one reason not to support the feature.
The other reason not to support the feature is that we don't expect massive numbers of items. If you are seeking to retrieve the set of credentials issued by one party, for example, or the set that match a particular schema, you are probably talking about 2-3 items, not hundreds.
If you truly need sorting, your best bet is to constrain the set of interesting items as much as you can with tags, then fetch all the items and sort them yourself.
Hello,
is there any possibility to sort records?
I don't see this documented anywhere and tried different ways in "MongoDB style", but without success...
https://hyperledger-indy.readthedocs.io/projects/sdk/en/latest/docs/design/003-wallet-storage/README.html#wallet-query-language
Can someone help me please?
(I'm not interested in extracting all records and processing them in memory)
The text was updated successfully, but these errors were encountered: