Hello,
I am using the Runs list as outlined in https://docs.microsoft.com/en-us/rest/api/azure/devops/test/runs/list?view=azure-devops-rest-6.0&source=docs
This list is getting long; hence, I used $top=N to get the top N test runs.
However, the top is actually the bottom.
I.E. you have test run 1, 2, 3,... where 1 is the first run ever done (least recent) and 3 is the most recent.
using top=2 will give 1 and 2 instead of the expected 2, 3.
I found via testing that the parameter 'bottom' does give the expected behavior, but it is not documented.
Can you add the documentation?