debian-mirror-gitlab/app/graphql/resolvers/environments_resolver.rb

30 lines
889 B
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# 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-07-28 23:09:34 +05:30
description: 'Search query for environment name'
2020-03-13 15:44:24 +05:30
2020-04-22 19:07:51 +05:30
argument :states, [GraphQL::STRING_TYPE],
required: false,
description: 'States of environments that should be included in result'
2020-03-13 15:44:24 +05:30
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-22 19:07:51 +05:30
rescue EnvironmentsFinder::InvalidStatesError => exception
raise Gitlab::Graphql::Errors::ArgumentError, exception.message
2020-03-13 15:44:24 +05:30
end
end
end