On Monday dashboard, we can clearly see values in CM Column but we are getting null value in API.
Link: https://northern-accountants.monday.com/boards/1831612862/
We are using below GraphQL query to fetch data:
{
to_be_start : boards(ids: 1831612862) {
groups(ids: "new_group81176") {
...boardFields
}
}
}
fragment boardFields on Group {
items {
column_values(ids: ["mirror26"]) {
text
}
}
}
Same issue exists with “formula_1” column in below link.
Link: https://northern-accountants.monday.com/boards/632285673
We are using below GraphQL query to fetch data:
{
iyep_awaiting_further_client_info : boards(ids: 1831612862) {
groups(ids: "new_group1835") {
...boardFields
}
}
}
fragment boardFields on Group {
items {
column_values(ids: ["date7","formula_1"]) {
text
}
}
}