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]
}
Fields
ActivityReply.id
● Int!
non-null scalar
The id of the reply
ActivityReply.userId
● Int
scalar
The id of the replies creator
ActivityReply.activityId
● Int
scalar
The id of the parent activity
ActivityReply.text
● String
scalar
The reply text
ActivityReply.text.asHtml
● Boolean
scalar
Return the string in pre-parsed html instead of markdown
ActivityReply.likeCount
● Int!
non-null scalar
The amount of likes the reply has
ActivityReply.isLiked
● Boolean
scalar
If the currently authenticated user liked the reply
ActivityReply.createdAt
● Int!
non-null scalar
The time the reply was created at
ActivityReply.user
● User
object
The user who created reply
ActivityReply.likes
● [User]
list object
The users who liked the reply
Returned By
ActivityReply
query ● SaveActivityReply
mutation
Member Of
InternalPage
object ● ListActivity
object ● MessageActivity
object ● Page
object ● TextActivity
object
Implemented By
LikeableUnion
union