Skip to main content
Question

Get all items based on specific column, can't get more than 25 records?

  • September 29, 2025
  • 1 reply
  • 28 views

Hey all, 

 

I’m trying to run some Python within Zapier, to get all items where the Status Column is set to ‘In Progress’.

 

I’m really struglling to figure out how to get more than 25 records at a time…?

 

1 reply

mitchell.hudson
  • Community Expert
  • September 29, 2025

You can pass a ‘limit’ argument to the items_page query, i.e:
 

query {
boards (ids:1234567890) {
items_page (limit: 50, query_params: {rules: {column_id: "timeline", compare_value: ["2023-06-30", "2023-07-01"], compare_attribute: "START_DATE", operator:between}}) {
cursor
items {
id
name
}
}
}
}