When I say an update on the card just to update the Card, all Label markings are lost. Here's the GraphiQL I'm using:
1mutation {2 updateCard(3 input: {4 id: 568589818, 5 title: "Update Card",6 label_ids: ["307521167"], 7 },8 ),9 {10 clientMutationId11 card {12 id13 title14 }15 }16}
But when I want to include a new label, the previous label is lost, follow the example
1mutation {2 updateCard(3 input: {4 id: 568589818, 5 title: "Update Card",6 label_ids: ["307597207", "307597211"], 7 },8 ),9 {10 clientMutationId11 card {12 id13 title14 }15 }16}17
Note that the label of the first code is not maintained, if I consult the labels of the card, only the last two will be returned ( label_ids: ["307597207", "307597211"] ) .
I would just like to add the two labels and keep the old label. So the CARD would have the three labels ( label_ids: ["568589818", "307597207", "307597211"] )
Is there any way to just append labels to the CARD?