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

resolves_pipelines.rb « concerns « resolvers « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8fd26d8599430425124c32b2909443d887da806f (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
# frozen_string_literal: true

module ResolvesPipelines
  extend ActiveSupport::Concern

  included do
    type [Types::Ci::PipelineType], null: false
    argument :status,
             Types::Ci::PipelineStatusEnum,
             required: false,
             description: "Filter pipelines by their status"
    argument :ref,
             GraphQL::STRING_TYPE,
             required: false,
             description: "Filter pipelines by the ref they are run for"
    argument :sha,
             GraphQL::STRING_TYPE,
             required: false,
             description: "Filter pipelines by the sha of the commit they are run for"
  end

  def resolve_pipelines(project, params = {})
    PipelinesFinder.new(project, context[:current_user], params).execute
  end
end