Mutation
mutation DeleteBoltSchedule {
deleteBoltSchedule {
ok
}
}Response
{
"data": {
"deleteBoltSchedule": {
"ok": true
}
}
}deleteBoltSchedule
Delete a bolt schedule that was created via the UI or the API.
Schedules defined in YAML (paradime_schedules.yml / .bolt/) cannot be deleted through the API - remove them from the repository instead.
Identify the schedule with slug (preferred) or name (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
deleteBoltSchedule(name: String, slug: String): DeleteBoltScheduleArguments
name
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!
Mutation
mutation DeleteBoltSchedule {
deleteBoltSchedule {
ok
}
}Response
{
"data": {
"deleteBoltSchedule": {
"ok": true
}
}
}Related topics
Bolt APIBoltRename or delete a workspaceRename and delete workspacesDelete a connection