Mutation
mutation DeleteThreadField($input: DeleteThreadFieldInput!) {
deleteThreadField(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"identifier": {
"threadId": "id",
"key": "string"
}
}
}Response
{
"data": {
"deleteThreadField": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Mutations
deleteThreadField
Removes a stored thread field value from a thread, identified by thread ID and field key. Has no effect if the field has no value. Requires the threadField:delete permission.
MUTATION
deleteThreadField(input: DeleteThreadFieldInput!): DeleteThreadFieldOutput!Arguments
input
required
Returns
error
Mutation
mutation DeleteThreadField($input: DeleteThreadFieldInput!) {
deleteThreadField(input: $input) {
error {
message
type
code
fields {
field
message
type
}
}
}
}Variables
{
"input": {
"identifier": {
"threadId": "id",
"key": "string"
}
}
}Response
{
"data": {
"deleteThreadField": {
"error": {
"message": "string",
"type": "VALIDATION",
"code": "string",
"fields": [
{
"field": "string",
"message": "string",
"type": "VALIDATION"
}
]
}
}
}
}Was this page helpful?

