AUTHENTICATED
scope can add a comment to the own post or
to a post created by any user from the network by executing of the createPostComment
mutation.
The current API user will be set as an author.
Mutation has a single required incoming argument - data
that represents PostCommentCreationInput
object:
Parameter | Type | Description |
---|---|---|
text | String | Required. The comment body text. Available HTML tags are: <a> , <p> , <br> . Any other tag will be trimmed. |
parentPostId | Int | Required. ID of the post that should be commented. |
Post
object. Detailed description and the full list of available properties can be found here.