Deletes a watcher link
Example
mutation deleteWatcherLink {
deleteWatcherLink(input: { wcode: "5962" }) {
watcherLink {
code
}
}
}
Response
{
"data": {
"deleteWatcherLink": {
"watcherLink": null
}
}
}
Arguments
input
(DeleteWatcherLinkInput!
)
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
Type
DeleteWatcherLinkPayload
The output of our deleteWatcherLink
mutation.