Skip to main content

Hi Team,


I want to search item based on those “updated_at”.

I tried below,


query {

boards(ids: 6774758468) {

items_page(

query_params: {rules: e {

column_id: “updated_at”,

compare_value: _“EXACT”, “2023-05-05”],

operator: greater_than_or_equals}]}

) {

items {

id

name

}

}

}

}


It doesn’t help. Please help me to find the solution to fetch items by “updated_at”.

See the reference for the last-updated column type.


monday.com Platform API

You need to specify the “compare_attribute” of “UPDATED_AT” and use one of the supported operators. According to the documentation.


Reply