Hello there,
First post in the developer section.
I’m trying to figure out how to write a code in GraphQL for deleting subitems.
I’m reading this description (Items) and I note this quote “Using this board ID and subitem ID you can apply any action to the subitem as you would to a regular item (i.e. archive it, delete, change column_values, etc).” and it’s not clear to me what syntax I’d have to use to delete (not to create) a sub item (not an item).
Would it be something like this:
mutation {
delete_subitem (parent_item_id: 1234567, item_name: "subitem to be deleted") {
id
board {
id
}
}
}
or something like this with the parent item id inserted somewhere?
mutation {
delete_item (item_id: 12345678) {
id
}
}


