When will formula display_value be available to all users in API v2024-10?

Trying to get formula values in API v2024-10 using:

query test_formula_support (
  $item_ids: [ID!]!, 
  $column_ids: [String!]!
) {
  items(ids: $item_ids) {
    name
    column_values(ids: $column_ids) {
      id
      text
      ... on FormulaValue {
        display_value
      }
    }
  }
}

and GraphQL variables:

{
  "item_ids": [1669763328],
  "column_ids": ["formula__1"]
}

I get a 403 UserUnauthorizedException error

I’ve been aware of this snippet for a while in API v2024-10:

      ... on FormulaValue {
        display_value
      }

…but always get the error message.

  • When will this be rolled out to all accounts?
  • It seems that API v2024-10 is now the current version, so is this getting released for all?
1 Like

I’m hearing that it will be available in v2025-01.

Currently v2025-01 in the playground is pointing to v2024-10, so won’t work. That will change at some point in the future.

Just to confirm about 2025-01 really just pointing to 2024-10 in the playground, there’s a query to test that out…

{
  version {
    value
  }
}

I can confirm that it can be expected in 2025-01!

1 Like