Skip to content

TextActivity

User text activity

type TextActivity {
id: Int!
userId: Int
type: ActivityType
replyCount: Int!
text(
asHtml: Boolean
): String
siteUrl: String
isLocked: Boolean
isSubscribed: Boolean
likeCount: Int!
isLiked: Boolean
isPinned: Boolean
createdAt: Int!
user: User
replies: [ActivityReply]
likes: [User]
}

The id of the activity

The user id of the activity’s creator

The type of activity

The number of activity replies

The status text (Markdown)

Return the string in pre-parsed html instead of markdown

The url for the activity page on the AniList website

If the activity is locked and can receive replies

If the currently authenticated user is subscribed to the activity

The amount of likes the activity has

If the currently authenticated user liked the activity

If the activity is pinned to the top of the users activity feed

The time the activity was created at

The user who created the activity

The written replies to the activity

The users who liked the activity

SaveTextActivity mutation

ActivityUnion union ● LikeableUnion union