Accessing Column Units via GraphQL API

Hello. I have a board that has multiple number columns. Some are in inches and some are in lbs. I have the units set on the columns themselves, so you can tell at a glance which columns are which when you look at a board from inside Monday.com. I’m working on an integration that accesses this data via graphql and totals up the lbs and totals up the inches separately.

Using the following Query, I can get the column values and see which columns are numeric. But, the additional_info property is empty. Is there someplace else I should be looking for the unit data?

query getMaterials($materialNames: [String]!) {
  items_by_multiple_column_values(board_id: 22222222, column_id: "name", column_values: $materialNames) {
    name
    column_values {
      title
      text
      type
      value
      additional_info
    }
  }
}

hi @lyle

You can retrieve this but it is at column level, not on item level. See below:

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.