Query
query ListBoltSchedules($offset: Int!, $limit: Int!, $showInactive: Boolean!) {
listBoltSchedules(offset: $offset, limit: $limit, showInactive: $showInactive) {
ok
schedules {
slug
name
schedule
owner
lastRunAt
lastRunState
}
totalCount
}
}Variables
{
"offset": 1,
"limit": 1,
"showInactive": true
}Response
{
"data": {
"listBoltSchedules": {
"ok": true,
"schedules": [
{
"slug": "string",
"name": "string",
"schedule": "string",
"owner": "string",
"lastRunAt": "string",
"lastRunState": "STARTING"
}
],
"totalCount": 1
}
}
}listBoltSchedules
List all bolt schedules.
QUERY
listBoltSchedules(offset: Int!, limit: Int!, showInactive: Boolean!, filter: BoltScheduleFilter): BoltSchedulesArguments
offset
Int!
required
limit
Int!
required
showInactive
Boolean!
required
filter
Optional filters applied to the schedule list.
Returns
ok
Boolean!
schedules
[BoltSchedule!]!
totalCount
Int!
Query
query ListBoltSchedules($offset: Int!, $limit: Int!, $showInactive: Boolean!) {
listBoltSchedules(offset: $offset, limit: $limit, showInactive: $showInactive) {
ok
schedules {
slug
name
schedule
owner
lastRunAt
lastRunState
}
totalCount
}
}Variables
{
"offset": 1,
"limit": 1,
"showInactive": true
}Response
{
"data": {
"listBoltSchedules": {
"ok": true,
"schedules": [
{
"slug": "string",
"name": "string",
"schedule": "string",
"owner": "string",
"lastRunAt": "string",
"lastRunState": "STARTING"
}
],
"totalCount": 1
}
}
}Related topics
Bolt APIBoltParadime MCP server: connect AI clients to your dataTools ReferenceBolt pipeline healer