Really enjoying using restish! Especially the auto pagination is very helpful.
However, some of our API endpoints don’t return a raw list. Instead, they return an object where one property contains the list, such as
{
"count": 4,
"items": [
{}, {}, {}, {}
]
}
Thoughts on adding the ability to auto-paginate a specific body field?
For example:
restish my-api list-items --rsh-pagination-field items
Might try to open a PR for this too