Hello team,
I am working on low code custom connector and I have following question about paginator:
I am getting following response of my yotpo products api and i want to iterate over all pages
below is the code in yaml file
paginator:
type: DefaultPaginator
page_size: "#/definitions/page_size"
limit_option:
inject_into: "request_parameter"
field_name: "count"
page_token_option:
type: RequestOption
inject_into: "request_parameter"
field_name: "page"
pagination_strategy:
type: "PageIncrement"
page_size: 150
response of json -
But when i run the read command to see the results, I am not able to iterate over all pages.
Can anyone help me to understand the logic ?