Mutation
mutation DeleteThreadLink($input: DeleteThreadLinkInput!) {
deleteThreadLink(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"threadLinkId": "id"
}
}Response
{
"data": {
"deleteThreadLink": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Mutations
deleteThreadLink
Removes an existing thread link by its ID. If the link type was MERGED_INTO, the previously merged thread will be marked as done automatically.
MUTATION
deleteThreadLink(input: DeleteThreadLinkInput!): DeleteThreadLinkOutput!Arguments
input
required
Returns
error
Mutation
mutation DeleteThreadLink($input: DeleteThreadLinkInput!) {
deleteThreadLink(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"threadLinkId": "id"
}
}Response
{
"data": {
"deleteThreadLink": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Was this page helpful?

