Blog Post Update Comment

blogPostUpdateComment #

blogPostUpdateComment(postId: String, commentId: String, params: UpdateBlogPostComment) BlogPostComment

Example #

mutation blogPostUpdateComment($postId: String!, $commentId: String!, $params: UpdateBlogPostComment){
  blogPostUpdateComment(postId: $postId, commentId: $commentId, params: $params) {
    id
    content
    customer {
      email
      phone
      firstName
      lastName
      profilePicture
      profilePictureFull
    }
    createdAt
    updatedAt
  }
}

Try It Now