From e9e910893fb2a5d424967b87d1eaed3de5a6f99d Mon Sep 17 00:00:00 2001 From: Martin Fenner Date: Mon, 30 Mar 2020 11:15:29 +0200 Subject: [PATCH] update graphql schema --- app/graphql/schema.graphql | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/graphql/schema.graphql b/app/graphql/schema.graphql index 32c96739f..c51800bb3 100644 --- a/app/graphql/schema.graphql +++ b/app/graphql/schema.graphql @@ -4278,7 +4278,11 @@ type Query { Returns the elements in the list that come before the specified cursor. """ before: String - first: Int = 25 + + """ + Returns the first _n_ elements from the list. + """ + first: Int """ Returns the last _n_ elements from the list. @@ -4739,6 +4743,7 @@ type ServiceConnectionWithMeta { """ pageInfo: PageInfo! totalCount: Int! + years: [Facet!] } """