Skip to content

Thread

Forum Thread

type Thread {
id: Int!
title: String
body(
asHtml: Boolean
): String
userId: Int!
replyUserId: Int
replyCommentId: Int
replyCount: Int
viewCount: Int
isLocked: Boolean
isSticky: Boolean
isSubscribed: Boolean
likeCount: Int!
isLiked: Boolean
repliedAt: Int
createdAt: Int!
updatedAt: Int!
user: User
replyUser: User
likes: [User]
siteUrl: String
categories: [ThreadCategory]
mediaCategories: [Media]
}

The id of the thread

The title of the thread

The text body of the thread (Markdown)

Return the string in pre-parsed html instead of markdown

The id of the thread owner user

The id of the user who most recently commented on the thread

The id of the most recent comment on the thread

The number of comments on the thread

The number of times users have viewed the thread

If the thread is locked and can receive comments

If the thread is stickied and should be displayed at the top of the page

If the currently authenticated user is subscribed to the thread

The amount of likes the thread has

If the currently authenticated user liked the thread

The time of the last reply

The time of the thread creation

The time of the thread last update

The owner of the thread

The user to last reply to the thread

The users who liked the thread

The url for the thread page on the AniList website

The categories of the thread

The media categories of the thread

SaveThread mutation ● Thread query ● ToggleThreadSubscription mutation

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

LikeableUnion union