Skip to main content

`NumbersValue` implementation new fields

  • November 29, 2023
  • 0 replies
  • 170 views

rachelatmonday
Forum|alt.badge.img

We just added the direction and symbol fields on the NumbersValue implementation. You can use these fields to return information about the symbols used in Numbers columns. Check out the details here!

Please note that the NumbersValue implementation is only available in API version 2023-10 and later.

Sample query

query {
  items (ids:[9876543210]) {
    column_values {
      ... on NumbersValue {
        number
        id
        symbol
        direction
      }
    }
  }
}

Returns

{
  "data": {
    "items": [
      {
        "column_values": [
          {
            "number": 10,
            "id": "numbers",
            "symbol": "$",
            "direction": "left"
          }
        ]
      }
    ]
  },
  "account_id": 1234567
}