Query
query BoltScheduleName {
boltScheduleName {
ok
slug
name
latestRunId
commands
owner
}
}Response
{
"data": {
"boltScheduleName": {
"ok": true,
"slug": "string",
"name": "string",
"latestRunId": 1,
"commands": [
"string"
],
"owner": "string"
}
}
}boltScheduleName
Look up a bolt schedule by slug. Identify the schedule with slug (preferred) or scheduleName (deprecated alias — carries a slug, not a display name). Exactly one of the two must be provided.
QUERY
boltScheduleName(slug: String, scheduleName: String): BoltScheduleNameStatusArguments
slug
String
The schedule slug returned by createBoltSchedule.
scheduleName
String
deprecated
Deprecated alias for slug. Carries a slug, not a display name.
Use `slug` instead.
Returns
ok
Boolean!
slug
String
The schedule slug (machine identifier).
name
String
The human-readable schedule name.
latestRunId
Int
commands
[String!]!
owner
String!
schedule
String!
uuid
String!
source
String!
suspended
Boolean!
Whether the schedule is currently paused (suspended).
Query
query BoltScheduleName {
boltScheduleName {
ok
slug
name
latestRunId
commands
owner
}
}Response
{
"data": {
"boltScheduleName": {
"ok": true,
"slug": "string",
"name": "string",
"latestRunId": 1,
"commands": [
"string"
],
"owner": "string"
}
}
}