Query parameter type

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.

Did you try to enter the date (in quotes) directly in the query (not through a variable)

Yes, below one is working without any issue . We need to provide correct column type.
It’s suggesting CompareValue but it’s not working.

items_page(limit: 500, query_params: {rules: [{column_id: "__last_updated__", 
  compare_value: ["EXACT","2024-03-07"], operator:greater_than_or_equals,compare_attribute: "UPDATED_AT"}]})