Skip to content

ActivityReply

Replay to an activity item

type ActivityReply {
id: Int!
userId: Int
activityId: Int
text(
asHtml: Boolean
): String
likeCount: Int!
isLiked: Boolean
createdAt: Int!
user: User
likes: [User]
}

The id of the reply

The id of the replies creator

The id of the parent activity

The reply text

Return the string in pre-parsed html instead of markdown

The amount of likes the reply has

If the currently authenticated user liked the reply

The time the reply was created at

The user who created reply

The users who liked the reply

ActivityReply query ● SaveActivityReply mutation

InternalPage object ● ListActivity object ● MessageActivity object ● Page object ● TextActivity object

LikeableUnion union