URGENT: API stopped returning "text" field for "board_relation" columns

API stopped returning “text” field for “board_relation” columns

Our code depends on these values. Change happened recently but I cannot tell when exactly.

This renders our app unusable for all customers.

Example:

query:

query {
  boards(ids:[985577909]) {
    items(ids:[1210966010]) {
      column_values(ids:["connect_boards10", connect_boards9, connect_boards6]) {
        id
        type
        text
      }
    }
  }
}

result

{
  "data": {
    "boards": [
      {
        "items": [
          {
            "column_values": [
              {
                "id": "connect_boards10",
                "type": "board-relation",
                "text": ""
              },
              {
                "id": "connect_boards9",
                "type": "board-relation",
                "text": ""
              },
              {
                "id": "connect_boards6",
                "type": "board-relation",
                "text": ""
              }
            ]
          }
        ]
      }
    ]
  },
  "account_id": 1116898
}
1 Like

@BraveCarto

Submitted the same issue to support earlier today.

Hi @BraveCarto and @JCorrell
We found the root cause of the issue. The fix is deployed to production and it should be back to normal.

1 Like

@Yoni_Leivn

Great to hear! Thanks for the update!

1 Like

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