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:
mutation {
updateCard(
input: {
id: 568589818,
title: "Update Card",
label_ids: "307521167"],
},
),
{
clientMutationId
card {
id
title
}
}
}
But when I want to include a new label, the previous label is lost, follow the example
mutation {
updateCard(
input: {
id: 568589818,
title: "Update Card",
label_ids: :"307597207", "307597211"],
},
),
{
clientMutationId
card {
id
title
}
}
}
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: s"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: d"568589818", "307597207", "307597211"] )
Is there any way to just append labels to the CARD?