Skip to content

Commit

Permalink
remove duplicate keys
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Fenner committed May 14, 2019
1 parent d337338 commit a66dee3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/graphql/types/client_type.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a66dee3

Please sign in to comment.