Commit ea84ec8d authored by Mayra Cabrera's avatar Mayra Cabrera

Merge branch 'issue_299814-add_graphql_page_limit' into 'master'

Decrease epic issues and child epics page size

See merge request gitlab-org/gitlab!63563
parents bc0a4ddd 4542ea32
......@@ -84,7 +84,7 @@ module Types
field :children, ::Types::EpicType.connection_type, null: true,
description: 'Children (sub-epics) of the epic.',
max_page_size: 2000,
max_page_size: 1000,
resolver: ::Resolvers::EpicsResolver
field :labels, Types::LabelType.connection_type, null: true,
description: 'Labels assigned to the epic.'
......@@ -132,7 +132,7 @@ module Types
null: true,
complexity: 5,
description: 'A list of issues associated with the epic.',
max_page_size: 2000,
max_page_size: 1000,
resolver: Resolvers::EpicIssuesResolver
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