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

pipeline_schedule_type.rb « ci « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 04f9fc78a928237f85175f67b1a2aba23b5d5ac8 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# frozen_string_literal: true

module Types
  module Ci
    class PipelineScheduleType < BaseObject
      graphql_name 'PipelineSchedule'

      connection_type_class(Types::CountableConnectionType)

      expose_permissions Types::PermissionTypes::Ci::PipelineSchedules

      authorize :read_pipeline_schedule

      field :id, GraphQL::Types::ID, null: false, description: 'ID of the pipeline schedule.'

      field :description, GraphQL::Types::String, null: true, description: 'Description of the pipeline schedule.'

      field :owner, ::Types::UserType, null: false, description: 'Owner of the pipeline schedule.'

      field :active, GraphQL::Types::Boolean, null: false, description: 'Indicates if a pipeline schedule is active.'

      field :next_run_at, Types::TimeType, null: false, description: 'Time when the next pipeline will run.'

      field :real_next_run, Types::TimeType, null: false, description: 'Time when the next pipeline will run.'

      field :last_pipeline, PipelineType, null: true, description: 'Last pipeline object.'

      field :ref_for_display, GraphQL::Types::String,
            null: true, description: 'Git ref for the pipeline schedule.', method: :ref_for_display

      field :ref_path, GraphQL::Types::String, null: true, description: 'Path to the ref that triggered the pipeline.'

      field :for_tag, GraphQL::Types::Boolean,
            null: false, description: 'Indicates if a pipelines schedule belongs to a tag.', method: :for_tag?

      field :cron, GraphQL::Types::String, null: false, description: 'Cron notation for the schedule.'

      field :cron_timezone, GraphQL::Types::String, null: false, description: 'Timezone for the pipeline schedule.'

      def ref_path
        ::Gitlab::Routing.url_helpers.project_commits_path(object.project, object.ref_for_display)
      end
    end
  end
end