Pagination
Learn how to use cursor-based pagination in the Sprinto Developer API to efficiently fetch and navigate large datasets.
Last updated
query WorkflowChecksPaginated($first: Int, $after: String) {
workflowChecksPaginated(first: 5, after: "dfsdfdscdsfsadcdsafasdcdsfcddsfc--00fdc") {
edges {
cursor
node {
title
}
}
totalCount
}
}{
"data": {
"workflowChecksPaginated": {
"edges": [
{
"cursor": "dsfasfsdfewrfdcdGRFGVSAVS=CV==",
"node": {
"title": "Periodic review of the users having access to Lokmat"
}
}
// ... additional workflow checks
],
"totalCount": 110
}
}
}