Hi, I want to update the field Done from false to true of a card using graphQL, how can I do that ? I need to move some cards to next phases:
I´m tryng this mutation:
mutation {
moveCardToPhase(
input: {
card_id: cardID
destination_phase_id: newPhaseID
}
) {
card {
id
current_phase{
name
}
}
}
}
And I’m getting the bellow error
"message": "Card could not be moved to phase id: 1234567"
How can I figure out what fields are required to allow this Phase updating of the card ?
Thanks in advance for any help.