Add support for viewing pipeline run output
This commit is contained in:
@@ -22,6 +22,31 @@ query GetCloneCredentials {
|
||||
}
|
||||
}
|
||||
|
||||
query GetPipeline(
|
||||
$id: String!,
|
||||
) {
|
||||
Pipeline(
|
||||
id: $id,
|
||||
) {
|
||||
id,
|
||||
name,
|
||||
url,
|
||||
pollInterval,
|
||||
cloneCredential {
|
||||
id,
|
||||
name,
|
||||
type,
|
||||
},
|
||||
runs {
|
||||
id,
|
||||
inProgress,
|
||||
result,
|
||||
buildOutput,
|
||||
stdout,
|
||||
stderr,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
mutation CreatePipeline(
|
||||
$name: String!,
|
||||
|
||||
Reference in New Issue
Block a user