Commit 78bfaec7 authored by Stan Hu's avatar Stan Hu

Merge branch 'mc/feature/show-200-jobs-per-stage-graphql' into 'master'

[GraphQL] Show up to 200 jobs per CI stage

See merge request gitlab-org/gitlab!69314
parents bcfd7848 866adb8a
......@@ -17,7 +17,8 @@ module Types
description: 'Detailed status of the stage.'
field :jobs, Ci::JobType.connection_type, null: true,
description: 'Jobs for the stage.',
method: 'latest_statuses'
method: 'latest_statuses',
max_page_size: 200
field :status, GraphQL::Types::String,
null: true,
description: 'Status of the pipeline stage.'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment