Blog Post Add Comment

blogPostAddComment #

blogPostAddComment(postId: String, params: AddBlogPostComment) BlogPostComment

Example #

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

Try It Now