Hi,
there is a way to filter dates for column type last_updated via API?
query {
boards (ids:1352790395) {
items_page (limit: 100, query_params: {rules: {column_id: “last_updated_1”, compare_value: [“2024-01-01”], operator:greater_than}}) {
cursor
items {
id
name
updated_at
column_values {
id
text
}
group {
title
id
color
}
}
}
}
}
i want to do something like the request above.