Commit 77885f3a authored by Peter Leitzen's avatar Peter Leitzen

Merge branch '211267-issue-boards-selector-bigger-page' into 'master'

Resolve "Issue boards selector only shows first 100 boards"

See merge request gitlab-org/gitlab!27467
parents 6e96907b c7a6c40e
...@@ -51,6 +51,7 @@ module Types ...@@ -51,6 +51,7 @@ module Types
Types::BoardType.connection_type, Types::BoardType.connection_type,
null: true, null: true,
description: 'Boards of the group', description: 'Boards of the group',
max_page_size: 2000,
resolver: Resolvers::BoardsResolver resolver: Resolvers::BoardsResolver
field :board, field :board,
......
...@@ -184,6 +184,7 @@ module Types ...@@ -184,6 +184,7 @@ module Types
Types::BoardType.connection_type, Types::BoardType.connection_type,
null: true, null: true,
description: 'Boards of the project', description: 'Boards of the project',
max_page_size: 2000,
resolver: Resolvers::BoardsResolver resolver: Resolvers::BoardsResolver
field :board, field :board,
......
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