2023-10-24 00:08:37 -03:00
|
|
|
query getPipelineDetails($projectPath: ID!, $iid: ID!) {
|
2022-07-15 18:13:00 -03:00
|
|
|
project(fullPath: $projectPath) {
|
|
|
|
id
|
2023-10-24 00:08:37 -03:00
|
|
|
pipeline(iid: $iid) {
|
2022-07-15 18:13:00 -03:00
|
|
|
id
|
|
|
|
iid
|
|
|
|
complete
|
|
|
|
stages {
|
|
|
|
nodes {
|
2023-10-24 00:08:37 -03:00
|
|
|
name,
|
2022-07-15 18:13:00 -03:00
|
|
|
groups {
|
|
|
|
nodes {
|
|
|
|
jobs {
|
|
|
|
nodes {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
needs {
|
|
|
|
nodes {
|
|
|
|
id
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|