Query
query ListBoltRuns($offset: Int!, $limit: Int!) {
listBoltRuns(offset: $offset, limit: $limit) {
ok
runs {
id
state
actor
parentScheduleRunId
actorEmail
startDttm
}
}
}Variables
{
"offset": 1,
"limit": 1
}Response
{
"data": {
"listBoltRuns": {
"ok": true,
"runs": [
{
"id": 1,
"state": "STARTING",
"actor": "string",
"parentScheduleRunId": 1,
"actorEmail": "string",
"startDttm": "string"
}
]
}
}
}listBoltRuns
List all runs for a given bolt schedule. 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
listBoltRuns(slug: String, scheduleName: String, offset: Int!, limit: Int!): BoltScheduleRunsArguments
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.
offset
Int!
required
limit
Int!
required
Returns
ok
Boolean!
runs
[BoltRun!]!
Query
query ListBoltRuns($offset: Int!, $limit: Int!) {
listBoltRuns(offset: $offset, limit: $limit) {
ok
runs {
id
state
actor
parentScheduleRunId
actorEmail
startDttm
}
}
}Variables
{
"offset": 1,
"limit": 1
}Response
{
"data": {
"listBoltRuns": {
"ok": true,
"runs": [
{
"id": 1,
"state": "STARTING",
"actor": "string",
"parentScheduleRunId": 1,
"actorEmail": "string",
"startDttm": "string"
}
]
}
}
}Related topics
Bolt APIBoltRun an agent with BoltBolt pipeline healerParadime MCP server: connect AI clients to your data