summaryrefslogtreecommitdiff
path: root/app/graphql/types/board_type.rb
blob: f47c744d1bb7a61b1aec485540f165f39eabfa5f (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
25
26
27
28
29
30
# frozen_string_literal: true

module Types
  class BoardType < BaseObject
    graphql_name 'Board'
    description 'Represents a project or group board'
    accepts ::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 :hide_backlog_list, type: GraphQL::BOOLEAN_TYPE, null: true,
          description: 'Whether or not backlog list is hidden'

    field :hide_closed_list, type: GraphQL::BOOLEAN_TYPE, null: true,
          description: 'Whether or not closed list is hidden'

    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')