CreateCommentReplyInput
CreateCommentReplyInput provides the input for the createCommentReply Mutation.
input CreateCommentReplyInput {
nudge: Boolean
storyID: ID!
parentID: ID!
parentRevisionID: ID!
body: String!
clientMutationId: String!
media: CreateCommentMediaInput
}
Fields
CreateCommentReplyInput.nudge ● Boolean scalar
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.
CreateCommentReplyInput.storyID ● ID! non-null scalar
storyID is the ID of the Story where we are creating a comment on.
CreateCommentReplyInput.parentID ● ID! non-null scalar
parentID is the ID of the Comment that we are replying to.
CreateCommentReplyInput.parentRevisionID ● ID! non-null scalar
parentRevisionID is the ID of the CommentRevision that we are replying to.
CreateCommentReplyInput.body ● String! non-null scalar
body is the Comment body, the content of the Comment.
CreateCommentReplyInput.clientMutationId ● String! non-null scalar
clientMutationId is required for Relay support.
CreateCommentReplyInput.media ● CreateCommentMediaInput input
media is the optional media attachment to be added to a Comment.
Member Of
createCommentReply mutation