Create and Run Builds
The following mutation create and runs a build for a given test suite:
CreateAndRunBuildTry in Explorer
GraphQL
mutation CreateAndRunBuild($testSuiteId: ObjectID!, $ciBuildId: String) {
createAndRunBuild(input: {
testSuiteId: $testSuiteId,
ciBuildId: $ciBuildId
}) {
build {
id
createdAt
status
}
}
}
caution
$testSuiteIdis the only required field.$ciBuildIdis an optional string that you can set to identify your CI build.- Build status may be still
Queuedimmediately after running the mutation. It will change toRunningafter Lumar starts crawling your website.