Mutations
addLabelToItem
Adds a label to an item.
MUTATION
addLabelToItem(input: LabelToItemInput!): AddLabelToItemArguments
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.
Adds a label to an item.
addLabelToItem(input: LabelToItemInput!): AddLabelToItemmutation AddLabelToItem($input: LabelToItemInput!) {
addLabelToItem(input: $input) {
entityId
labelId
}
}{
"input": {
"entityId": 1,
"labelId": 1
}
}{
"data": {
"addLabelToItem": {
"entityId": 1,
"labelId": 1
}
}
}Was this page helpful?
mutation AddLabelToItem($input: LabelToItemInput!) {
addLabelToItem(input: $input) {
entityId
labelId
}
}{
"input": {
"entityId": 1,
"labelId": 1
}
}{
"data": {
"addLabelToItem": {
"entityId": 1,
"labelId": 1
}
}
}Suggestions