Post
No description
type Post {
attachments: [PostAttachment!]
caption: String
comments(
after: String
before: String
first: Int
last: Int
): PostCommentsConnection
commentsCount: Int
createdAt: DateTime
creator: User
downVoters(
after: String
before: String
first: Int
last: Int
): PostDownVotersConnection
downVotesCount: Int
hasUserVoted(userId: ID!): HasUserVoted
id: ID!
organization: Organization
pinnedAt: DateTime
upVoters(
after: String
before: String
first: Int
last: Int
): PostUpVotersConnection
upVotesCount: Int
updatedAt: DateTime
updater: User
}