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

44 lines
1.1 KiB
Ruby
Raw Normal View History

2021-04-29 21:17:54 +05:30
# frozen_string_literal: true
module Resolvers
class ProjectJobsResolver < BaseResolver
include Gitlab::Graphql::Authorize::AuthorizeResource
include LooksAhead
type ::Types::Ci::JobType.connection_type, null: true
authorize :read_build
authorizes_object!
2022-10-11 01:57:18 +05:30
extension ::Gitlab::Graphql::Limit::FieldCallCount, limit: 1
2021-04-29 21:17:54 +05:30
argument :statuses, [::Types::Ci::JobStatusEnum],
required: false,
description: 'Filter jobs by status.'
2023-03-04 22:38:38 +05:30
argument :with_artifacts, ::GraphQL::Types::Boolean,
required: false,
description: 'Filter by artifacts presence.'
2021-04-29 21:17:54 +05:30
alias_method :project, :object
2023-03-04 22:38:38 +05:30
def resolve_with_lookahead(statuses: nil, with_artifacts: nil)
jobs = ::Ci::JobsFinder.new(
current_user: current_user, project: project, params: {
scope: statuses, with_artifacts: with_artifacts
}
).execute
2021-04-29 21:17:54 +05:30
apply_lookahead(jobs)
end
private
def preloads
{
2023-03-04 22:38:38 +05:30
previous_stage_jobs_or_needs: [:needs, :pipeline],
2021-04-29 21:17:54 +05:30
artifacts: [:job_artifacts],
pipeline: [:user]
}
end
end
end