When i launch .../api/contacts.all i getting all my record (8).
And for use pagination i use this url .../api/contacts.all?maxByPage=3 but i getting no record.
The correct syntax is .../api/contacts.all?$maxByPage=3 (maxByPage and page must be prepend with $) otherwise maxByPage is considered as a query filter (select only contacts with property maxByPage equals to 3).
Hi,
I tried to use pagination, but it seem isn't working.
I created a DefaultQueryHandler and when i check the service description i have this verb.
When i launch
.../api/contacts.all
i getting all my record (8). And for use pagination i use this url.../api/contacts.all?maxByPage=3
but i getting no record.It's my request who is malformed ?
Thx