Skip to main content

Does anyone know a quick way to query for an item’s name using the item’s itemId and the boardId it exists in?

Hi @ianhunter373,


You can do so using an items query as shown below (without the board ID).


query {
items (ids: [1234567890, 9876543210, 2345678901]) {
name
}
}

You can read more about items here. Let us know if you have any other questions.


Best,

Rachel


Reply