I can’t get information about the child/parent pipes in Pipe query. I make a query like this one below:
{
pipe(id: "form id here") {
childrenRelations {
child {
__typename
}
}
}
}
And the only property I can get from the child/parent is __typename and the result is this:
{
"data": {
"pipe": {
"childrenRelations": s
{
"child": {
"__typename": "Pipe"
}
}
]
}
}
}
I want to know at least the child pipe ID. I tried the pipe_relations query, but it has the same limitations. The only way I could get some information about the pipes in the relations was in card query, but I need that information before a card is created.