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!
reactors(
offset: Int! = 0
limit: Int! = 10
): UserPaged!
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.reactors ● UserPaged! non-null object
PostComment.reactors.offset ● Int! non-null scalar
PostComment.reactors.limit ● Int! non-null scalar
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