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”.