Extract Calculated values using the API

I have created an API call extracting values from my boards, but it Appears that ALL CALCULATED values are dropped.

Tried to feed Monday chat bot with my data structure and it came back with suggestion, but I still do not see any values in the Calculated values columns that I have in my boards.

According to the Monday.com Chat bot this Data Structure should be correct. I get the basic data values, BUT NOT the Calculated values
board_query = “”"
query {
boards(ids: [%s]) {
id
name
description
state
columns {
id
title
type
description
settings_str
}
groups {
title
id
items_page {
items {
id
name}
}
}
}
}
“”" % board_id

1
4 replies