Commit 4542ea32 authored by Felipe Artur's avatar Felipe Artur

Decrease epic issues and child epics page size

Decrease epic issues and child epics max page
size on GraphQL.

EE: true
Changelog: other
parent e53be38e
...@@ -84,7 +84,7 @@ module Types ...@@ -84,7 +84,7 @@ module Types
field :children, ::Types::EpicType.connection_type, null: true, field :children, ::Types::EpicType.connection_type, null: true,
description: 'Children (sub-epics) of the epic.', description: 'Children (sub-epics) of the epic.',
max_page_size: 2000, max_page_size: 1000,
resolver: ::Resolvers::EpicsResolver resolver: ::Resolvers::EpicsResolver
field :labels, Types::LabelType.connection_type, null: true, field :labels, Types::LabelType.connection_type, null: true,
description: 'Labels assigned to the epic.' description: 'Labels assigned to the epic.'
...@@ -132,7 +132,7 @@ module Types ...@@ -132,7 +132,7 @@ module Types
null: true, null: true,
complexity: 5, complexity: 5,
description: 'A list of issues associated with the epic.', description: 'A list of issues associated with the epic.',
max_page_size: 2000, max_page_size: 1000,
resolver: Resolvers::EpicIssuesResolver resolver: Resolvers::EpicIssuesResolver
field :descendant_counts, Types::EpicDescendantCountType, null: true, field :descendant_counts, Types::EpicDescendantCountType, null: true,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment