Hi! I'm trying to query only the card of a specific child relation.
When I query the child relations, it returns a list, each with its connected card, but in this case, I need just the first element.
How can I do this? I've tried the following code, but without success.
{
card(id: 730862941) {
child_relations(id: 340175833) {
name
cards {
title
id
}
}
}
}