diff --git a/backend/src/schema/types/type/Post.gql b/backend/src/schema/types/type/Post.gql index f28059366..e932bafbf 100644 --- a/backend/src/schema/types/type/Post.gql +++ b/backend/src/schema/types/type/Post.gql @@ -9,6 +9,28 @@ input FilterBubble { type Query { Post( + id: ID + activityId: String + objectId: String + title: String + slug: String + content: String + contentExcerpt: String + image: String + imageUpload: Upload + visibility: Visibility + deleted: Boolean + disabled: Boolean + createdAt: String + updatedAt: String + commentsCount: Int + shoutedCount: Int + shoutedByCurrentUser: Boolean + _id: String + first: Int + offset: Int + orderBy: [_PostOrdering] + filter: _PostFilter filterBubble: FilterBubble ): [Post] }