Hi , What is the correct parameter type value here ?
query($dashboard_id: [ID!], $ITEM_LAST_UPDATE_DATE: Date )
{
boards(ids: $dashboard_id) {
id
name
items_page(
limit: 500,
query_params: {rules: [{column_id: “last_updated”,
compare_value: [“EXACT”, $ITEM_LAST_UPDATE_DATE] 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
}
}
}
}
}
I also tried with CompareValue type as well but no luck.

