2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Resolvers
|
|
|
|
class EnvironmentsResolver < BaseResolver
|
2021-10-27 15:23:28 +05:30
|
|
|
argument :name, GraphQL::Types::String,
|
2020-03-13 15:44:24 +05:30
|
|
|
required: false,
|
2021-03-08 18:12:59 +05:30
|
|
|
description: 'Name of the environment.'
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
argument :search, GraphQL::Types::String,
|
2020-03-13 15:44:24 +05:30
|
|
|
required: false,
|
2021-03-08 18:12:59 +05:30
|
|
|
description: 'Search query for environment name.'
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
argument :states, [GraphQL::Types::String],
|
2020-04-22 19:07:51 +05:30
|
|
|
required: false,
|
2021-03-08 18:12:59 +05:30
|
|
|
description: 'States of environments that should be included in result.'
|
2020-04-22 19:07:51 +05:30
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
argument :type, GraphQL::Types::String,
|
|
|
|
required: false,
|
|
|
|
description: 'Search query for environment type.'
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
type Types::EnvironmentType, null: true
|
|
|
|
|
|
|
|
alias_method :project, :object
|
|
|
|
|
|
|
|
def resolve(**args)
|
|
|
|
return unless project.present?
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
::Environments::EnvironmentsFinder.new(project, context[:current_user], args).execute
|
|
|
|
rescue ::Environments::EnvironmentsFinder::InvalidStatesError => e
|
2022-08-27 11:52:29 +05:30
|
|
|
raise Gitlab::Graphql::Errors::ArgumentError, e.message
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|