added
New ability to read the formula column
November 26th, 2024
In API versions 2025-01
and later, you can read the formula column using the display_value
field. This field returns the content of the formula column as a string.
This feature is in an early release phase and has the following limitations:
- Formulas that use mirror columns are not supported.
- You can retrieve up to 10,000 formula values per minute.
- You can query up to five formula columns in one request.
As we do additional testing and development, these limitations will gradually be reduced or removed.
query {
boards(ids: [1234567890]){
items_page(limit:2){
items{
id
column_values {
...on FormulaValue{
display_value
id
type
}
}
}
}
}
}