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…?
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…?
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
}
}
}
}
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.