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?