Mutation
mutation RetryBoltRunFromFailure {
retryBoltRunFromFailure {
ok
runId
}
}Response
{
"data": {
"retryBoltRunFromFailure": {
"ok": true,
"runId": 1
}
}
}retryBoltRunFromFailure
Retry the latest finished run of a bolt schedule, resuming from the first failed command.
Caller passes a schedule slug (not a run id); the latest finished run of that schedule is resolved automatically. The retry re-executes the first failed command and every command that ran after it — not just the failed command itself — so downstream commands that depended on the failure are re-run as well.
Identify the schedule with slug (preferred) or scheduleName (deprecated
alias kept for backwards compatibility with older SDKs — both fields carry a
slug, not a display name). Exactly one of the two must be provided.
MUTATION
retryBoltRunFromFailure(scheduleName: String, slug: String): RetryBoltRunFromFailureArguments
scheduleName
String
deprecated
Deprecated alias for slug. Carries a slug, not a display name.
Use `slug` instead.
slug
String
The schedule slug returned by createBoltSchedule.
Returns
ok
Boolean!
runId
Int!
Mutation
mutation RetryBoltRunFromFailure {
retryBoltRunFromFailure {
ok
runId
}
}Response
{
"data": {
"retryBoltRunFromFailure": {
"ok": true,
"runId": 1
}
}
}