New `linked_items` field
July 10th, 2023
You can use the new linked_items
field to return an item's linked items. The response is an array that contains the unique identifiers of the linked items.
This field is only available in API versions 2023-10
and later!
Sample query
query {
items (ids: 9876543210) {
linked_items (linked_board_id:1234567890, link_to_item_column_id:"connect_boards") {
id
}
}
}
Sample response
{
"data": {
"items": [
{
"linked_items": [
{
"id": "1122334455"
},
{
"id": "5544332211"
}
]
}
]
},
"account_id": 12345678
}