Skip to main content

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