ThreadComment
Forum Thread Comment
type ThreadComment { id: Int! userId: Int threadId: Int comment( asHtml: Boolean ): String likeCount: Int! isLiked: Boolean siteUrl: String createdAt: Int! updatedAt: Int! thread: Thread user: User likes: [User] childComments: Json isLocked: Boolean}Fields
Section titled “Fields”ThreadComment.id ● Int! non-null scalar
Section titled “ThreadComment.id ● Int! ”The id of the comment
The user id of the comment’s owner
The id of thread the comment belongs to
The text content of the comment (Markdown)
ThreadComment.comment.asHtml ● Boolean scalar
Section titled “ThreadComment.comment.asHtml ● Boolean ”Return the string in pre-parsed html instead of markdown
ThreadComment.likeCount ● Int! non-null scalar
Section titled “ThreadComment.likeCount ● Int! ”The amount of likes the comment has
If the currently authenticated user liked the comment
The url for the comment page on the AniList website
ThreadComment.createdAt ● Int! non-null scalar
Section titled “ThreadComment.createdAt ● Int! ”The time of the comments creation
ThreadComment.updatedAt ● Int! non-null scalar
Section titled “ThreadComment.updatedAt ● Int! ”The time of the comments last update
The thread the comment belongs to
The user who created the comment
The users who liked the comment
The comment’s child reply comments
If the comment tree is locked and may not receive replies or edits
Returned By
Section titled “Returned By”SaveThreadComment mutation ● ThreadComment query
Member Of
Section titled “Member Of”InternalPage object ● Page object ● ThreadCommentLikeNotification object ● ThreadCommentMentionNotification object ● ThreadCommentReplyNotification object ● ThreadCommentSubscribedNotification object ● ThreadLikeNotification object
Implemented By
Section titled “Implemented By”LikeableUnion union