Hey all,
I’ve read in the documents that we are able to pull from formula fields. When I try to pull them, they are coming back as null and an empty string. Looking at the column on the board, it should be coming back as “100%”. This is a long calculation that will take a bit of time to calculate in C#. Is there something I’m doing wrong?
query:
query {boards (ids: BoardID){items (page:1, limit: 250) {name id column_values(ids:“formula3”){id value text}}}}
Returns:
“column_values”: l
{
“id”: “formula3”,
“value”: null,
“text”: “”
}
]
Reading the formula column
You can query the formula column using the column_values
object. The object has different fields based on which API version you are using. Column values v2 fields will be available in API versions 2023-10
and later, while column values v1 fields are only supported in versions 2023-07
and 2023-04
.