Mutations
removeLabelFromItem
Removes a label from an item.
MUTATION
removeLabelFromItem(input: LabelToItemInput!): RemoveLabelFromItemArguments
input
required
Returns
entityId
Int
labelId
Int
Mutation
Variables
Response
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Removes a label from an item.
removeLabelFromItem(input: LabelToItemInput!): RemoveLabelFromItemmutation RemoveLabelFromItem($input: LabelToItemInput!) {
removeLabelFromItem(input: $input) {
entityId
labelId
}
}{
"input": {
"entityId": 1,
"labelId": 1
}
}{
"data": {
"removeLabelFromItem": {
"entityId": 1,
"labelId": 1
}
}
}Was this page helpful?
mutation RemoveLabelFromItem($input: LabelToItemInput!) {
removeLabelFromItem(input: $input) {
entityId
labelId
}
}{
"input": {
"entityId": 1,
"labelId": 1
}
}{
"data": {
"removeLabelFromItem": {
"entityId": 1,
"labelId": 1
}
}
}Suggestions