Skip to content

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
}

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)

Return the string in pre-parsed html instead of markdown

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

The time of the comments creation

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

SaveThreadComment mutation ● ThreadComment query

InternalPage object ● Page object ● ThreadCommentLikeNotification object ● ThreadCommentMentionNotification object ● ThreadCommentReplyNotification object ● ThreadCommentSubscribedNotification object ● ThreadLikeNotification object

LikeableUnion union