Pagination
Pagination is a technique that allows you to divide a large set of data into smaller chunks that can be easily retrieved and displayed
# usage of pagination with owners query
{
owners(input: {filter: <your filters>, paging: {skip:0, take:50}})
{ id }
}
Last updated