fixed
Bug fix: Date column filtering with multiple exact dates
April 1st, 2024
In API versions 2024-04
and later, you can filter the date column with multiple exact dates. In the query, your compare value must include:
- Each date in
"YYYY-MM-DD"
format, separated by commas - One
"EXACT"
compare value for each date (e.g., if you have three dates, you need three"EXACT"
compare values), separated by commas
query {
boards(ids: 1234567890) {
items_page(
query_params: {rules: [ {
column_id: "date",
compare_value: ["EXACT", "2024-04-01", "EXACT", "2023-04-01"],
operator: any_of}]}
) {
items {
id
name
}
}
}
}