Mutation
mutation DeletePostMute($input: DeletePostMuteInput!) {
deletePostMute(input: $input) {
clientMutationId
errors
post {
answerCount
assets {
aspectRatio
assetStyle
contentType
fileSize
id
imageUrl
}
body
bodyHtml
bodyText
cheerCount
}
}
}Variables
{
"input": {
"postId": "id"
}
}Response
{
"data": {
"deletePostMute": {
"clientMutationId": "string",
"errors": [
"string"
],
"post": {
"answerCount": 1,
"assets": [
{
"aspectRatio": 1.5,
"assetStyle": "string",
"contentType": "string",
"fileSize": "string",
"id": "id",
"imageUrl": "string"
}
],
"body": "string",
"bodyHtml": "string",
"bodyText": "string",
"cheerCount": 1
}
}
}
}Mutations
deletePostMute
Unmute a post, restoring its notifications. By default unmutes it for the current member; a host or moderator may pass memberId to unmute it for another member.
Required scope: write:posts
MUTATION
deletePostMute(input: DeletePostMuteInput!): DeletePostMutePayloadArguments
input
required
Parameters for DeletePostMute
Returns
clientMutationId
String
A unique identifier for the client performing the mutation.
errors
[String!]!
post
Mutation
mutation DeletePostMute($input: DeletePostMuteInput!) {
deletePostMute(input: $input) {
clientMutationId
errors
post {
answerCount
assets {
aspectRatio
assetStyle
contentType
fileSize
id
imageUrl
}
body
bodyHtml
bodyText
cheerCount
}
}
}Variables
{
"input": {
"postId": "id"
}
}Response
{
"data": {
"deletePostMute": {
"clientMutationId": "string",
"errors": [
"string"
],
"post": {
"answerCount": 1,
"assets": [
{
"aspectRatio": 1.5,
"assetStyle": "string",
"contentType": "string",
"fileSize": "string",
"id": "id",
"imageUrl": "string"
}
],
"body": "string",
"bodyHtml": "string",
"bodyText": "string",
"cheerCount": 1
}
}
}
}