Skip to main content

CreateCommentReplyInput

CreateCommentReplyInput provides the input for the createCommentReply Mutation.

type CreateCommentReplyInput {  nudge: Boolean  storyID: ID!  parentID: ID!  parentRevisionID: ID!  body: String!  clientMutationId: String!  media: CreateCommentMediaInput}

Fields#

nudge (Boolean)#

nudge when true will instead return an error related to recoverable moderation faults such as a toxic comment or spam comment to provide user feedback to nudge the user to correct the comment.

storyID (ID!)#

storyID is the ID of the Story where we are creating a comment on.

parentID (ID!)#

parentID is the ID of the Comment that we are replying to.

parentRevisionID (ID!)#

parentRevisionID is the ID of the CommentRevision that we are replying to.

body (String!)#

body is the Comment body, the content of the Comment.

clientMutationId (String!)#

clientMutationId is required for Relay support.

media (CreateCommentMediaInput)#

media is the optional media attachment to be added to a Comment.