Skip to main content
Solved

ID of connected Cards

  • 19 October 2020
  • 1 reply
  • 150 views

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

 

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