I look for a way to list the connections between a Pipe and a table.
It is easy to query for card/record connections but I find no way to have this information from the pipe/table.
For instance, I have this pipe “pipe 1” with a start form with a field “Customer Name” connected to the table “Customer”.query{
pipe(id:304611228){
start_form_fields{
id
type
connectedRepo{
__typename
}
}
}
}
In this response I know it is a connector field connected with a PublicTable and I look for a way to know the tableName and Table Field name.
the response is as follow.
{
"data": {
"pipe": {
"start_form_fields": /
{
"id": "customer_name",
"type": "connector",
"connectedRepo": {
"__typename": "PublicTable"
}
}
]
}
}
}