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]}Fields
Section titled “Fields”Thread.id ● Int! non-null scalar
Section titled “Thread.id ● Int! ”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
Thread.userId ● Int! non-null scalar
Section titled “Thread.userId ● Int! ”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
Thread.likeCount ● Int! non-null scalar
Section titled “Thread.likeCount ● Int! ”The amount of likes the thread has
If the currently authenticated user liked the thread
The time of the last reply
Thread.createdAt ● Int! non-null scalar
Section titled “Thread.createdAt ● Int! ”The time of the thread creation
Thread.updatedAt ● Int! non-null scalar
Section titled “Thread.updatedAt ● Int! ”The time of the thread last update
The owner of the thread
The user to last reply to the thread
Thread.likes ● [User] list object
Section titled “Thread.likes ● [User] ”The users who liked the thread
The url for the thread page on the AniList website
Thread.categories ● [ThreadCategory] list object
Section titled “Thread.categories ● [ThreadCategory] ”The categories of the thread
The media categories of the thread
Returned By
Section titled “Returned By”SaveThread mutation ● Thread query ● ToggleThreadSubscription mutation
Member Of
Section titled “Member Of”InternalPage object ● Page object ● ThreadComment object ● ThreadCommentLikeNotification object ● ThreadCommentMentionNotification object ● ThreadCommentReplyNotification object ● ThreadCommentSubscribedNotification object ● ThreadLikeNotification object
Implemented By
Section titled “Implemented By”LikeableUnion union