The filter functionality works well. But it seems to be a bug when I want to use pagination together with my filter results.
When going to page 2, I also get the results from page 1. Is this the expected behaviour?
EXAMPLE:
client.delivery.content.filter(body, {page:1, pageSize:1})
// SUCCESS, items array has 1 item
client.delivery.content.filter(body, {page:2, pageSize:1})
// FAILS, items array contains 2 items
// I also get the results from 'page 1'
client.delivery.content.filter(body, {page:3, pageSize:1})
// FAILS, items array contains 3 items
// I also get the results from 'page 1' & 'page 2'
Content Filter + Pagination
Hi,
I've been testing the content filters using the Headless Client
The filter functionality works well. But it seems to be a bug when I want to use pagination together with my filter results.
When going to page 2, I also get the results from page 1. Is this the expected behaviour?
is working on a reply...