Skip to main content

Cancel Builds

The following mutation cancels a build:

mutation CancelBuild($buildId: ObjectID!) {
cancelBuild(input: {
buildId: $buildId
}) {
build {
id
createdAt
updatedAt
status
}
}
}

Try in explorer

caution

You can have only one running Build per test suite.