syncano-node
syncano-node copied to clipboard
Take 500 records per request instead of 100
Describe the bug
.list() method should have page size of 500. Currently it takes 100 records per request.
To Reproduce
// data.posts.create 1000 posts
data.posts.list()
It executes 10 requests, each takes 100 records. It should execute 2 requests, each should take 500.