Hi ,
May I know what is the wrong with below query.
It was working couple of days back and it’s started throwing an issue.
Also, this is an example query provided on monday.com documentation.
Thanks & Regards,
Madhu Kolli
Hi ,
May I know what is the wrong with below query.
It was working couple of days back and it’s started throwing an issue.
Also, this is an example query provided on monday.com documentation.
Thanks & Regards,
Madhu Kolli
Using below GraphQL , I am able to fetch only incremental records .
compare_value: [“EXACT”, “2024-03-21”] needs to parameterised .
{
boards(ids: 123) {
id
name
items_page(
limit: 500
–query_params: {rules: [{column_id: “last_updated”, compare_value: [“EXACT”, “2024-03-21”], operator:greater_than_or_equals,compare_attribute:“UPDATED_AT”}]}
) {
cursor
items {
item_id: id
Project: name
item_create_date: created_at
item_last_update_date: updated_at
group {
id
group_name: title
}
subitems {
subitem_id: id
subproject: name
column_values {
column {
title
}
text
value
}
}
column_values {
… on MirrorValue {
display_value
}
column {
title
}
text
value
}
}
}
}
}
This works Madhu, I just don’t know exactly how you got to that “EXACT” operator in the compare_values. I didn’t see anything similar in the Documentation: Last updated
What is the logic?
Hi Daniel,
You can have a look at the Date column type documentation on how to use operators with different types of compare values. This works with the last updated column as well. Good luck!
Reinier
Yes, it’s not very clear in their documentation.
But, I tried multiple versions and finally got this solution.
Hope this helps for many.
Thanks & Regards,
Madhu Kolli