summaryrefslogtreecommitdiff
path: root/app/graphql/types/projects/service_type.rb
blob: 9ce325c465560e40f89889478b210e0b35b312de (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
# frozen_string_literal: true

module Types
  module Projects
    module ServiceType
      include Types::BaseInterface
      graphql_name 'Service'

      # TODO: Add all the fields that we want to expose for the project services integrations
      # https://gitlab.com/gitlab-org/gitlab/-/issues/213088
      field :type, GraphQL::STRING_TYPE, null: true,
            description: 'Class name of the service.'
      field :active, GraphQL::BOOLEAN_TYPE, null: true,
            description: 'Indicates if the service is active.'

      definition_methods do
        def resolve_type(object, context)
          if object.is_a?(::JiraService)
            Types::Projects::Services::JiraServiceType
          else
            Types::Projects::Services::BaseServiceType
          end
        end
      end

      orphan_types Types::Projects::Services::BaseServiceType, Types::Projects::Services::JiraServiceType
    end
  end
end