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

organizations_resolver.rb « crm « resolvers « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 719834f406de2a3252eec17e77fbfe02ab98b787 (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
37
38
39
40
41
42
# frozen_string_literal: true

module Resolvers
  module Crm
    class OrganizationsResolver < BaseResolver
      include Gitlab::Graphql::Authorize::AuthorizeResource
      include ResolvesIds

      authorize :read_crm_organization

      type Types::CustomerRelations::OrganizationType, null: true

      argument :sort, Types::CustomerRelations::OrganizationSortEnum,
               description: 'Criteria to sort organizations by.',
               required: false,
               default_value: { field: 'name', direction: :asc }

      argument :search, GraphQL::Types::String,
               required: false,
               description: 'Search term used to find organizations with.'

      argument :state, Types::CustomerRelations::OrganizationStateEnum,
               required: false,
               description: 'State of the organization to search for.'

      argument :ids, [Types::GlobalIDType[CustomerRelations::Organization]],
               required: false,
               description: 'Filter organizations by IDs.'

      def resolve(**args)
        args[:ids] = resolve_ids(args.delete(:ids))
        args.delete(:state) if args[:state] == :all

        ::Crm::OrganizationsFinder.new(current_user, { group: group }.merge(args)).execute
      end

      def group
        object.respond_to?(:sync) ? object.sync : object
      end
    end
  end
end