OBJECT

Post

link GraphQL Schema definition

1type Post {
2
3# The user that created this post.
4author: User
5
6# The content of the post as entered by the user and annotated with links and
7# emotes.
8body: MessageBody
9
10# Time the post was created by the user.
11createdAt: Time
12
13# Collection of embedable content attached to this post.
14embeds: [PostEmbed]
15
16# This Post's unique feeds ID.
17id: ID!
18
19# Is this post deleted.
20isDeleted: Boolean
21
22# The reactions associated with this post.
23reactions: [Reaction]
24
25# Data related to the current user.
26self: PostSelfConnection
27
28}