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