Skip to main content

PostComment

Comment(id, commentable_type, commentable_id, parent_comment, created, modified, commenter, text, language_code, is_edited, is_deleted)

type PostComment {
id: UUID!
text: String!
created: DateTime!
modified: DateTime!
mentions: [User]!
links: [LinkPreview]!
post: Post!
creator: User!
reactions: ReactionCounts!
myReaction: ReactionCounts!
language: String
}

Fields

PostComment.id ● UUID! non-null scalar

PostComment.text ● String! non-null scalar

PostComment.created ● DateTime! non-null scalar

PostComment.modified ● DateTime! non-null scalar

PostComment.mentions ● [User]! non-null object

PostComment.links ● [LinkPreview]! non-null object

PostComment.post ● Post! non-null object

PostComment.creator ● User! non-null object

PostComment.reactions ● ReactionCounts! non-null object

PostComment.myReaction ● ReactionCounts! non-null object

Only present, when the current user reacted to this post comment

PostComment.language ● String scalar

Returned by

updatePostCommentReaction mutation

Member of

CreatePostCommentOutput object ● NotificationOptions object ● Post object