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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/ci/job_type.rb')
-rw-r--r--app/graphql/types/ci/job_type.rb34
1 files changed, 17 insertions, 17 deletions
diff --git a/app/graphql/types/ci/job_type.rb b/app/graphql/types/ci/job_type.rb
index 360ea3ba7a9..4a3518e1865 100644
--- a/app/graphql/types/ci/job_type.rb
+++ b/app/graphql/types/ci/job_type.rb
@@ -14,7 +14,7 @@ module Types
description: 'ID of the job.'
field :pipeline, Types::Ci::PipelineType, null: true,
description: 'Pipeline the job belongs to.'
- field :name, GraphQL::STRING_TYPE, null: true,
+ field :name, GraphQL::Types::String, null: true,
description: 'Name of the job.'
field :needs, BuildNeedType.connection_type, null: true,
description: 'References to builds that must complete before the jobs run.'
@@ -24,11 +24,11 @@ module Types
description: "Status of the job."
field :stage, Types::Ci::StageType, null: true,
description: 'Stage of the job.'
- field :allow_failure, ::GraphQL::BOOLEAN_TYPE, null: false,
+ field :allow_failure, ::GraphQL::Types::Boolean, null: false,
description: 'Whether the job is allowed to fail.'
- field :duration, GraphQL::INT_TYPE, null: true,
+ field :duration, GraphQL::Types::Int, null: true,
description: 'Duration of the job in seconds.'
- field :tags, [GraphQL::STRING_TYPE], null: true,
+ field :tags, [GraphQL::Types::String], null: true,
description: 'Tags for the current job.'
# Life-cycle timestamps:
@@ -53,33 +53,33 @@ module Types
description: 'Detailed status of the job.'
field :artifacts, Types::Ci::JobArtifactType.connection_type, null: true,
description: 'Artifacts generated by the job.'
- field :short_sha, type: GraphQL::STRING_TYPE, null: false,
+ field :short_sha, type: GraphQL::Types::String, null: false,
description: 'Short SHA1 ID of the commit.'
- field :scheduling_type, GraphQL::STRING_TYPE, null: true,
+ field :scheduling_type, GraphQL::Types::String, null: true,
description: 'Type of job scheduling. Value is `dag` if the job uses the `needs` keyword, and `stage` otherwise.'
- field :commit_path, GraphQL::STRING_TYPE, null: true,
+ field :commit_path, GraphQL::Types::String, null: true,
description: 'Path to the commit that triggered the job.'
- field :ref_name, GraphQL::STRING_TYPE, null: true,
+ field :ref_name, GraphQL::Types::String, null: true,
description: 'Ref name of the job.'
- field :ref_path, GraphQL::STRING_TYPE, null: true,
+ field :ref_path, GraphQL::Types::String, null: true,
description: 'Path to the ref.'
- field :playable, GraphQL::BOOLEAN_TYPE, null: false, method: :playable?,
+ field :playable, GraphQL::Types::Boolean, null: false, method: :playable?,
description: 'Indicates the job can be played.'
- field :retryable, GraphQL::BOOLEAN_TYPE, null: false, method: :retryable?,
+ field :retryable, GraphQL::Types::Boolean, null: false, method: :retryable?,
description: 'Indicates the job can be retried.'
- field :cancelable, GraphQL::BOOLEAN_TYPE, null: false, method: :cancelable?,
+ field :cancelable, GraphQL::Types::Boolean, null: false, method: :cancelable?,
description: 'Indicates the job can be canceled.'
- field :active, GraphQL::BOOLEAN_TYPE, null: false, method: :active?,
+ field :active, GraphQL::Types::Boolean, null: false, method: :active?,
description: 'Indicates the job is active.'
- field :stuck, GraphQL::BOOLEAN_TYPE, null: false, method: :stuck?,
+ field :stuck, GraphQL::Types::Boolean, null: false, method: :stuck?,
description: 'Indicates the job is stuck.'
field :coverage, GraphQL::FLOAT_TYPE, null: true,
description: 'Coverage level of the job.'
- field :created_by_tag, GraphQL::BOOLEAN_TYPE, null: false,
+ field :created_by_tag, GraphQL::Types::Boolean, null: false,
description: 'Whether the job was created by a tag.'
- field :manual_job, GraphQL::BOOLEAN_TYPE, null: true,
+ field :manual_job, GraphQL::Types::Boolean, null: true,
description: 'Whether the job has a manual action.'
- field :triggered, GraphQL::BOOLEAN_TYPE, null: true,
+ field :triggered, GraphQL::Types::Boolean, null: true,
description: 'Whether the job was triggered.'
def pipeline