From 0d8a74809432866056b878b6f340af0471d68db2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=A4fer?= Date: Mon, 3 Jun 2019 23:04:43 +0200 Subject: [PATCH] Apparently I was wrong: types don't get merged --- backend/src/schema/types/type/Post.gql | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) 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] }