2023-10-28 00:45:03 -03:00
|
|
|
query jobs($projectPath: ID!, $iid: ID!, $cursor: String) {
|
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:13:01 -03:00
|
|
|
name
|
2023-10-28 00:45:03 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
jobs(after: $cursor) {
|
|
|
|
pageInfo {
|
|
|
|
hasNextPage
|
|
|
|
endCursor
|
|
|
|
}
|
|
|
|
count
|
|
|
|
nodes {
|
|
|
|
name
|
|
|
|
needs {
|
|
|
|
edges {
|
|
|
|
node {
|
|
|
|
name
|
2022-07-15 18:13:00 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-10-28 00:45:03 -03:00
|
|
|
stage {
|
|
|
|
name
|
|
|
|
}
|
2022-07-15 18:13:00 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|