Deleting labels
Delete labels using the API
Last updated
Was this helpful?
Delete labels using the API
Last updated
Was this helpful?
Was this helpful?
{
labels(filters: {value: {eq: <your label here>}}) {
edges {
node {
id
_etag
value
}
}
}
}
mutation DeleteLabel($id: ID!, $etag: String!) {
deleteLabel(id: $id, etag: $etag) {
id
}
}
{
"id": <id from previous step>,
"etag": <etag from previous step>
}