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
As a client I want to be able to get a long list of results in several operations.
As a client i want to be able to start fetching the result only since a given index.
On this ticket we will only consider positive position.
position: Int (default: 0) The zero-based index of the first id in the full list of results to return.
If a negative value is given, it is an offset from the end of the list. Specifically, the negative value MUST be added to the total number of results given the filter, and if still negative, it’s clamped to 0. This is now the zero-based index of the first id to return.
If the index is greater than or equal to the total number of objects in the results list, then the ids array in the response will be empty, but this is not an error.
accept a 'position' parameter in the query request.
DOD
write an integration test demonstrating that when the client provide a position parameter, only the result since this position are returned in the response.
write an integration test demonstrating that if the client provide a position parameter bigger than the total number of results then the response is empty and there is no error.
run the tests against the distributed version of the contract
The text was updated successfully, but these errors were encountered:
WHY
As a client I want to be able to get a long list of results in several operations.
As a client i want to be able to start fetching the result only since a given index.
On this ticket we will only consider positive position.
HOW
DOD
write an integration test demonstrating that when the client provide a position parameter, only the result since this position are returned in the response.
write an integration test demonstrating that if the client provide a position parameter bigger than the total number of results then the response is empty and there is no error.
run the tests against the distributed version of the contract
The text was updated successfully, but these errors were encountered: