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

noteable_interface.rb « notes « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 537084dff62ea1588059fe26a41c3cc97f079a24 (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
31
32
33
34
35
36
# frozen_string_literal: true

module Types
  module Notes
    module NoteableInterface
      include Types::BaseInterface

      field :notes, Types::Notes::NoteType.connection_type, null: false, description: "All notes on this noteable."
      field :discussions, Types::Notes::DiscussionType.connection_type, null: false, description: "All discussions on this noteable."
      field :commenters, Types::UserType.connection_type, null: false, description: "All commenters on this noteable."

      def self.resolve_type(object, context)
        case object
        when Issue
          Types::IssueType
        when MergeRequest
          Types::MergeRequestType
        when Snippet
          Types::SnippetType
        when ::DesignManagement::Design
          Types::DesignManagement::DesignType
        when ::AlertManagement::Alert
          Types::AlertManagement::AlertType
        else
          raise "Unknown GraphQL type for #{object}"
        end
      end

      def commenters
        object.commenters(user: current_user)
      end
    end
  end
end

Types::Notes::NoteableInterface.prepend_mod_with('Types::Notes::NoteableInterface')