Hi,
I am trying to update phase fields in my Pipe using the following GraphQL query:
mutation {
updatePhaseField(
input: {
id: "did_you_finish_the_task"
label: "Have you finished the task?"
options: ["Yep", "Nope"]
required: false
editable: true
}
) {
phase_field {
id
label
}
}
}
As far as I can tell the only way to specify the field is through the field ID. However my account is linked to many boards and companies and there are duplicate IDs across those. For example there could be multiple fields with IDs "did_you_finish_the_task" and I don’t want to accidentally rename the wrong one.
So my question is how do I specify a certain field in a certain phase or board?