gitlab-org--gitlab-foss/app/assets/javascripts/pipelines/graphql/queries/get_pipeline_details.query....

55 lines
1.2 KiB
GraphQL
Raw Normal View History

query getPipelineDetails($projectPath: ID!, $iid: ID!) {
project(fullPath: $projectPath) {
pipeline(iid: $iid) {
id: iid
stages {
nodes {
name
status: detailedStatus {
action {
icon
path
title
}
}
groups {
nodes {
status: detailedStatus {
label
group
icon
}
name
size
jobs {
nodes {
name
scheduledAt
needs {
nodes {
name
}
}
status: detailedStatus {
icon
tooltip
hasDetails
detailsPath
group
action {
buttonTitle
icon
path
title
}
}
}
}
}
}
}
}
}
}
}