Search item by updated_at

Hi Team,

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

query {
boards(ids: 6774758468) {
items_page(
query_params: {rules: [ {
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.

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