Hello there,
We are currently using the Monday API on version 2023-10.
Since two days we are experiencing outage on our internal application because when we try to query our items properties of type date (through the “text” property) the API return an empty string. The issue is happening on all fields of type date.
I made the test to query the “value” field and i can confirm that the value is correctly retrieved.
I didn’t find any changelogs and/or previous post about this issue, can anyone help please ?
Query example:
query {
boards (ids: XXXX) {
items_page (query_params: {rules: [{ column_id: "text3", compare_value: ["person-XXXX"], operator: any_of }, { column_id: "date_montage", compare_value: ["2023-09-05", "2023-09-05"], operator: between }]}) {
items {
id
name
column_values(ids: ["_","link","cr_ateur","texte66","status2","status","text3","numbers_2","date_montage","text73","lien_internet","priority","fichier","lien_internet6","date_publication"]) {
id
text
value
... on PeopleValue {
persons_and_teams {
id
}
}
... on LinkValue {
url
}
}
}
}
}
}
Partial Response
{
"id": "date_montage",
"text": "",
"value": "{\"date\":\"2023-09-05\",\"changed_at\":\"2023-09-05T12:41:53.942Z\"}"
},