From a66dee34eb79ec68608665a2026221e5fba430fd Mon Sep 17 00:00:00 2001 From: Martin Fenner Date: Tue, 14 May 2019 23:01:02 +0200 Subject: [PATCH] remove duplicate keys --- app/graphql/types/client_type.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/graphql/types/client_type.rb b/app/graphql/types/client_type.rb index 8ba476650..e32ef3586 100644 --- a/app/graphql/types/client_type.rb +++ b/app/graphql/types/client_type.rb @@ -22,12 +22,12 @@ class ClientType < GraphQL::Schema::Object argument :first, Int, required: false, default_value: 25 end - field :publications, ClientPublicationConnectionWithMetaType, null: false, connection: true, max_page_size: 100, null: false, description: "Publications managed by the client" do + field :publications, ClientPublicationConnectionWithMetaType, null: false, connection: true, max_page_size: 100, description: "Publications managed by the client" do argument :query, String, required: false argument :first, Int, required: false, default_value: 25 end - field :softwares, ClientSoftwareConnectionWithMetaType, null: false, connection: true, max_page_size: 100, null: false, description: "Software managed by the client" do + field :softwares, ClientSoftwareConnectionWithMetaType, null: false, connection: true, max_page_size: 100, description: "Software managed by the client" do argument :query, String, required: false argument :first, Int, required: false, default_value: 25 end