Making a request to http://root/rest-1.v1/Data/Story?page=2,0 using the rest-1.v1 endpoint returns a set of stories in addition to the total number of stories.
v1.query({
from: 'Story',
select: ['Name', 'Number'],
page: {
start: 0,
size: 50
}
})
When using the JavaScript SDK the set of stories is returned, but the total is not available.
Is there another way to accomplish this?
Making a request to
http://root/rest-1.v1/Data/Story?page=2,0using therest-1.v1endpoint returns a set of stories in addition to the total number of stories.When using the JavaScript SDK the set of stories is returned, but the total is not available.
Is there another way to accomplish this?