summaryrefslogtreecommitdiff
path: root/app/graphql
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-03-18 15:09:45 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-03-18 15:09:45 +0000
commitaaf59610548d9b0fd01acfd50e831cbe519ecba2 (patch)
treeb6505abedcd965ebae5118b504b185b63129dc4c /app/graphql
parent1363ca12f1f07c634647cf55c4c16b7401098673 (diff)
downloadgitlab-ce-aaf59610548d9b0fd01acfd50e831cbe519ecba2.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/graphql')
-rw-r--r--app/graphql/types/group_type.rb1
-rw-r--r--app/graphql/types/project_type.rb1
2 files changed, 2 insertions, 0 deletions
diff --git a/app/graphql/types/group_type.rb b/app/graphql/types/group_type.rb
index 699aa51e6c8..bd9efef94f8 100644
--- a/app/graphql/types/group_type.rb
+++ b/app/graphql/types/group_type.rb
@@ -51,6 +51,7 @@ module Types
Types::BoardType.connection_type,
null: true,
description: 'Boards of the group',
+ max_page_size: 2000,
resolver: Resolvers::BoardsResolver
field :board,
diff --git a/app/graphql/types/project_type.rb b/app/graphql/types/project_type.rb
index 1142459f6eb..5c0b9182ac5 100644
--- a/app/graphql/types/project_type.rb
+++ b/app/graphql/types/project_type.rb
@@ -184,6 +184,7 @@ module Types
Types::BoardType.connection_type,
null: true,
description: 'Boards of the project',
+ max_page_size: 2000,
resolver: Resolvers::BoardsResolver
field :board,