mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 03:00:11 +01:00
36 lines
586 B
GraphQL
36 lines
586 B
GraphQL
query jobs($projectPath: ID!, $iid: ID!, $cursor: String) {
|
|
project(fullPath: $projectPath) {
|
|
id
|
|
pipeline(iid: $iid) {
|
|
id
|
|
iid
|
|
complete
|
|
stages {
|
|
nodes {
|
|
name
|
|
}
|
|
}
|
|
jobs(after: $cursor) {
|
|
pageInfo {
|
|
hasNextPage
|
|
endCursor
|
|
}
|
|
count
|
|
nodes {
|
|
name
|
|
needs {
|
|
edges {
|
|
node {
|
|
name
|
|
}
|
|
}
|
|
}
|
|
stage {
|
|
name
|
|
}
|
|
tags
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|