-
Notifications
You must be signed in to change notification settings - Fork 649
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
add pagination and limit to get_key_references and get_account_references #1753
Comments
In what ways could response be sorted? What information does the backend have, if for.example, 10 accounts have the same key? |
@sschiessl-bcp current behavior looks like this:
2 accounts have the first key (one is duplicate, IMHO is a bug), 1 account has the second key, lots of accounts have the last key (with duplicates as well, and pagination would be useful for this case). |
Let's take the account with lots of key as example. Comments:
|
|
What I meant is what information has the backend available to use for sorting the return value. As I understand it nothing except account id and public key. |
UI team requesting this at #1749 (comment)
By the way, please fix the duplicate result issue (#1209), see the example below. Perhaps change the return data type from
vector<vector>
tovector<set>
orvector<flat_set>
.The text was updated successfully, but these errors were encountered: