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
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
type Types::EnvironmentType, null: true
|
|
|
|
|
|
|
|
alias_method :project, :object
|
|
|
|
|
|
|
|
def resolve(**args)
|
|
|
|
return unless project.present?
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
Environments::EnvironmentsFinder.new(project, context[:current_user], args).execute
|
|
|
|
rescue Environments::EnvironmentsFinder::InvalidStatesError => exception
|
2020-04-22 19:07:51 +05:30
|
|
|
raise Gitlab::Graphql::Errors::ArgumentError, exception.message
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|