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

board_type.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5dc9e084270d103f164b8fafe2618bef5dc892f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

module Types
  class BoardType < BaseObject
    graphql_name 'Board'
    description 'Represents a project or group board'

    authorize :read_board

    field :id, type: GraphQL::ID_TYPE, null: false,
          description: 'ID (global ID) of the board'
    field :name, type: GraphQL::STRING_TYPE, null: true,
          description: 'Name of the board'

    field :lists,
          Types::BoardListType.connection_type,
          null: true,
          description: 'Lists of the board',
          resolver: Resolvers::BoardListsResolver,
          extras: [:lookahead]
  end
end

Types::BoardType.prepend_if_ee('::EE::Types::BoardType')