Apparently I was wrong: types don't get merged

This commit is contained in:
Robert Schäfer 2019-06-03 23:04:43 +02:00
parent ed0c9b775b
commit 0d8a748094

View File

@ -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]
}