Thread
Forum Thread
| Field | Argument | Type | Description |
|---|---|---|---|
| id | Int! | The id of the thread | |
| title | String | The title of the thread | |
| body | String | The text body of the thread (Markdown) | |
| asHtml | Boolean | Return the string in pre-parsed html instead of markdown | |
| userId | Int! | The id of the thread owner user | |
| replyUserId | Int | The id of the user who most recently commented on the thread | |
| replyCommentId | Int | The id of the most recent comment on the thread | |
| replyCount | Int | The number of comments on the thread | |
| viewCount | Int | The number of times users have viewed the thread | |
| isLocked | Boolean | If the thread is locked and can receive comments | |
| isSticky | Boolean | If the thread is stickied and should be displayed at the top of the page | |
| isSubscribed | Boolean | If the currently authenticated user is subscribed to the thread | |
| likeCount | Int! | The amount of likes the thread has | |
| isLiked | Boolean | If the currently authenticated user liked the thread | |
| repliedAt | Int | The time of the last reply | |
| createdAt | Int! | The time of the thread creation | |
| updatedAt | Int! | The time of the thread last update | |
| user | User | The owner of the thread | |
| replyUser | User | The user to last reply to the thread | |
| likes | [User] | The users who liked the thread | |
| siteUrl | String | The url for the thread page on the AniList website | |
| categories | [ThreadCategory] | The categories of the thread | |
| mediaCategories | [Media] | The media categories of the thread | |
