How can I set a parent relation to a specific card?
Page 1 / 1
If you want to do this via API, you can use the createCardRelation mutation. Here is an example of how to use it:
mutation {
createCardRelation(input:{
childId: CHILD_CARD_ID,
parentId: PARENT_CARD_IS,
sourceId: CONNECTION_FIELD_INTERNAL_ID,
sourceType: "Field"
}) {
cardRelation {
id
childId
parentId
}
}
}
You can check more details about the mutation in our developers documentation or using our interactive playground.
Reply
Join us in the Pipefy Community! 🚀
No account yet? Create an account
Login with your Pipefy credentials
or
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.