Mutation
mutation DeletePostReport($input: DeletePostReportInput!) {
deletePostReport(input: $input) {
clientMutationId
errors
post {
__typename
... on Event {
assets {
__typename
}
body
bodyHtml
bodyText
cheerCount
cheersEnabled
}
}
}
}Variables
{
"input": {
"postId": "id"
}
}Response
{
"data": {
"deletePostReport": {
"clientMutationId": "string",
"errors": [
"string"
],
"post": {
"__typename": "Event",
"assets": [
{
"__typename": "Asset"
}
],
"body": "string",
"bodyHtml": "string",
"bodyText": "string",
"cheerCount": 1,
"cheersEnabled": true
}
}
}
}Mutations
deletePostReport
Remove the current member’s flag on a post — undoes a mute, hide, or report they previously created.
Required scope: write:posts
MUTATION
deletePostReport(input: DeletePostReportInput!): DeletePostReportPayloadArguments
input
required
Parameters for DeletePostReport
Returns
clientMutationId
String
A unique identifier for the client performing the mutation.
errors
[String!]!
post
Mutation
mutation DeletePostReport($input: DeletePostReportInput!) {
deletePostReport(input: $input) {
clientMutationId
errors
post {
__typename
... on Event {
assets {
__typename
}
body
bodyHtml
bodyText
cheerCount
cheersEnabled
}
}
}
}Variables
{
"input": {
"postId": "id"
}
}Response
{
"data": {
"deletePostReport": {
"clientMutationId": "string",
"errors": [
"string"
],
"post": {
"__typename": "Event",
"assets": [
{
"__typename": "Asset"
}
],
"body": "string",
"bodyHtml": "string",
"bodyText": "string",
"cheerCount": 1,
"cheersEnabled": true
}
}
}
}