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