hyperledger-iroha / iroha

Iroha - A simple, enterprise-grade decentralized ledger
https://wiki.hyperledger.org/display/iroha
Apache License 2.0
438 stars 280 forks source link

feat(queries): Report amount of remaining items in query #5016

Closed DCNick3 closed 1 month ago

DCNick3 commented 1 month ago

Context

This PR allows the client to inspect the amount of items that is returned by the query without requesting all batches.

Closes #4984

Solution

Checklist

Erigara commented 1 month ago

How this will work for SDKs?

To get total amount of items in the query they need to add number of remaining items (from the remaning field) + size of current batch?

DCNick3 commented 1 month ago

To get total amount of items in the query they need to add number of remaining items (from the remaning field) + size of current batch?

Yes, this is what rust SDK is also doing