From 5a5147a82e331d5c28495f0f3e2b547866cb92f3 Mon Sep 17 00:00:00 2001 From: Martin Fenner Date: Tue, 26 May 2020 09:46:55 +0200 Subject: [PATCH] fix graphql schema --- app/graphql/schema.graphql | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/app/graphql/schema.graphql b/app/graphql/schema.graphql index d5b2b208e..a81ef3490 100644 --- a/app/graphql/schema.graphql +++ b/app/graphql/schema.graphql @@ -6590,21 +6590,7 @@ type PublicationEdge { type Query { _service: _Service! actor(id: ID!): ActorItem! - actors( - after: String - - """ - Returns the elements in the list that come before the specified cursor. - """ - before: String - first: Int = 25 - - """ - Returns the last _n_ elements from the list. - """ - last: Int - query: String - ): ActorConnection! + actors(after: String, first: Int = 25, query: String): ActorConnection! audiovisual(id: ID!): Audiovisual! audiovisuals(after: String, first: Int = 25, hasCitations: Int, hasDownloads: Int, hasFunder: Boolean, hasOrganization: Boolean, hasParts: Int, hasPerson: Boolean, hasVersions: Int, hasViews: Int, ids: [String!], memberId: String, query: String, repositoryId: String, userId: String): AudiovisualConnectionWithTotal! book(id: ID!): Book!