Is there a way through reports or the API to retrieve the ID of the cards connected to a certain card?
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
}
}
}
}
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.