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

notes_type.rb « widgets « work_items « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7da2777beee3b4cb24351fb8d2d2e159c19c1db3 (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
# frozen_string_literal: true

module Types
  module WorkItems
    module Widgets
      # Disabling widget level authorization as it might be too granular
      # and we already authorize the parent work item
      # rubocop:disable Graphql/AuthorizeTypes
      class NotesType < BaseObject
        graphql_name 'WorkItemWidgetNotes'
        description 'Represents a notes widget'

        implements Types::WorkItems::WidgetInterface

        # This field loads user comments, system notes and resource events as a discussion for an work item,
        # raising the complexity considerably. In order to discourage fetching this field as part of fetching
        # a list of issues we raise the complexity
        field :discussions, Types::Notes::DiscussionType.connection_type,
          null: true,
          description: "Notes on this work item.",
          resolver: Resolvers::WorkItems::WorkItemDiscussionsResolver
      end
      # rubocop:enable Graphql/AuthorizeTypes
    end
  end
end