Hello, I'm using a PipefyAPI - GraphQL to create a card, but I can't connect the card with other cards from another pipe. I tried to use updateFieldsValues, but I always get the error message "Value You are not allowed to connect these cards / table records.".
OBS: I would like to connect the cards that way
Best answer by Nicole Chiroli
Hello @ops9. How are you doing today?
You can update it like this: mutation{ a1: updateCardField(input:{card_id:"12345" field_id:"slug ID" new_value: "id of the connected card"}) }
To find the field_id you can use this query over here: { card(id:12345){ fields{ field{ id label } value } } }