Mutation
mutation UpdatePost($input: UpdatePostInput!) {
updatePost(input: $input) {
clientMutationId
errors
post {
answerCount
assets {
aspectRatio
assetStyle
contentType
fileSize
id
imageUrl
}
body
bodyHtml
bodyText
cheerCount
}
}
}Variables
{
"input": {
"id": "id"
}
}Response
{
"data": {
"updatePost": {
"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
updatePost
Update an existing post or article
Required scopes: write:posts, host:write:network_posts (any one)
MUTATION
updatePost(input: UpdatePostInput!): UpdatePostPayloadArguments
input
required
Parameters for UpdatePost
Returns
clientMutationId
String
A unique identifier for the client performing the mutation.
errors
[String!]!
post
Mutation
mutation UpdatePost($input: UpdatePostInput!) {
updatePost(input: $input) {
clientMutationId
errors
post {
answerCount
assets {
aspectRatio
assetStyle
contentType
fileSize
id
imageUrl
}
body
bodyHtml
bodyText
cheerCount
}
}
}Variables
{
"input": {
"id": "id"
}
}Response
{
"data": {
"updatePost": {
"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
}
}
}
}