Solved

ID of connected Cards

  • 19 October 2020
  • 1 reply
  • 145 views

Userlevel 5

Is there a way through reports or the API to retrieve the ID of the cards connected to a certain card?

 

icon

Best answer by Marcos Carvalho 19 October 2020, 21:27

View original

1 reply

Userlevel 6
Badge +6

Hey Nigel, how are you?

 

Sure, you can query all the connected cards using parent_relations or child_relations like this:

 

{
card(id: 1234567) {
parent_relations {
cards {
id
title
}
}
child_relations {
cards {
id
title
}
}
}
}

 

Reply