Skip to main content

How can I efficiently handle large datasets in Cybozu?

Comments

1 comment

  • Rajnish Kucheria

    Pagination can be achieved in the 'List records' action of the Cybozu connector by using the 'Query' input field. Here’s an example:

    Let’s say there are 40 records in your Kintone app, and you want to fetch 10 records at a time. You can use the following values in the 'Query' input field during each iteration:

    • limit 10 offset 0
    • limit 10 offset 10
    • limit 10 offset 20
    • limit 10 offset 30

    The 'offset' value specifies the number of records to skip from the beginning, allowing you to paginate the results and improve performance.

    For more details, you can refer to the following link: Cybozu Pagination Guide

    0

Please sign in to leave a comment.