I have a query which works perfectly fine but as soon as I add Display_value to get the formula values, it returns null as results. the following is the query that gives me all the required data.
query { boards (ids: [$board_id]) { id name
items_page(limit:5){
cursor
items {
id name
column_values{
id type value
... on TextValue { text}
... on DateValue { time date }
...on LongTextValue { text value }
... on NumbersValue {number id symbol direction}
... on FormulaValue { value }
column{ title}
}}} } }"
However, I want to see display_value for formulas so as soon as I update the query to update Formula value, it starts to return nothing. It seem like a bug on the server side.
... on FormulaValue { display_value }