Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/board_list_type.rb')
-rw-r--r--app/graphql/types/board_list_type.rb16
1 files changed, 9 insertions, 7 deletions
diff --git a/app/graphql/types/board_list_type.rb b/app/graphql/types/board_list_type.rb
index 7f4c49df429..2352a21bd87 100644
--- a/app/graphql/types/board_list_type.rb
+++ b/app/graphql/types/board_list_type.rb
@@ -15,19 +15,21 @@ module Types
description: 'ID (global ID) of the list.'
field :collapsed, GraphQL::Types::Boolean, null: true,
- description: 'Indicates if the list is collapsed for this user.'
+ description: 'Indicates if the list is collapsed for this user.'
field :issues_count, GraphQL::Types::Int, null: true,
- description: 'Count of issues in the list.'
+ description: 'Count of issues in the list.'
field :label, Types::LabelType, null: true,
- description: 'Label of the list.'
+ description: 'Label of the list.'
field :list_type, GraphQL::Types::String, null: false,
- description: 'Type of the list.'
+ description: 'Type of the list.'
field :position, GraphQL::Types::Int, null: true,
- description: 'Position of list within the board.'
+ description: 'Position of list within the board.'
field :title, GraphQL::Types::String, null: false,
- description: 'Title of the list.'
+ description: 'Title of the list.'
- field :issues, ::Types::IssueType.connection_type, null: true,
+ field :issues,
+ ::Types::IssueType.connection_type,
+ null: true,
description: 'Board issues.',
late_extensions: [Gitlab::Graphql::Board::IssuesConnectionExtension],
resolver: ::Resolvers::BoardListIssuesResolver