2020-01-16 13:08:46 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Resolvers
|
|
|
|
class EnvironmentsResolver < BaseResolver
|
|
|
|
argument :name, GraphQL::STRING_TYPE,
|
|
|
|
required: false,
|
|
|
|
description: 'Name of the environment'
|
|
|
|
|
|
|
|
argument :search, GraphQL::STRING_TYPE,
|
|
|
|
required: false,
|
2020-06-24 02:09:01 -04:00
|
|
|
description: 'Search query for environment name'
|
2020-01-16 13:08:46 -05:00
|
|
|
|
2020-04-07 20:09:30 -04:00
|
|
|
argument :states, [GraphQL::STRING_TYPE],
|
|
|
|
required: false,
|
|
|
|
description: 'States of environments that should be included in result'
|
|
|
|
|
2020-01-16 13:08:46 -05:00
|
|
|
type Types::EnvironmentType, null: true
|
|
|
|
|
|
|
|
alias_method :project, :object
|
|
|
|
|
|
|
|
def resolve(**args)
|
|
|
|
return unless project.present?
|
|
|
|
|
|
|
|
EnvironmentsFinder.new(project, context[:current_user], args).find
|
2020-04-07 20:09:30 -04:00
|
|
|
rescue EnvironmentsFinder::InvalidStatesError => exception
|
|
|
|
raise Gitlab::Graphql::Errors::ArgumentError, exception.message
|
2020-01-16 13:08:46 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|