Skip to content

MessageActivity

User message activity

type MessageActivity {
id: Int!
recipientId: Int
messengerId: Int
type: ActivityType
replyCount: Int!
message(
asHtml: Boolean
): String
isLocked: Boolean
isSubscribed: Boolean
likeCount: Int!
isLiked: Boolean
isPinned: Boolean
isPrivate: Boolean
siteUrl: String
createdAt: Int!
recipient: User
messenger: User
replies: [ActivityReply]
likes: [User]
}

The id of the activity

The user id of the activity’s recipient

The user id of the activity’s sender

The type of the activity

The number of activity replies

The message text (Markdown)

Return the string in pre-parsed html instead of markdown

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

If the message is private and only viewable to the sender and recipients

The url for the activity page on the AniList website

The time the activity was created at

The user who the activity message was sent to

The user who sent the activity message

The written replies to the activity

The users who liked the activity

SaveMessageActivity mutation

ActivityMessageNotification object

ActivityUnion union ● LikeableUnion union