Skip to main content

gameModelAutomationRuns

List automation runs (the monitoring + audit trail of autonomous-process executions) for an app, newest first, optionally filtered by automation name and/or outcome. Each run carries timing, fan-out + invocation counts, billed compute, and any circuit action. Requires app-admin ('manage_apps').

gameModelAutomationRuns(
appId: BigInt!
automationName: String
success: Boolean
limit: Int
offset: Int
): [GmAutomationRun!]!

Arguments

gameModelAutomationRuns.appId ● BigInt! non-null scalar

The app (tenant) whose runs to list.

gameModelAutomationRuns.automationName ● String scalar

Optional: only runs of this automation. Omit for all.

gameModelAutomationRuns.success ● Boolean scalar

Optional: filter by outcome (true = succeeded, false = failed).

gameModelAutomationRuns.limit ● Int scalar

Max runs to return (default 50, max 200).

gameModelAutomationRuns.offset ● Int scalar

Number of runs to skip (pagination).

Type

GmAutomationRun object

One execution of an automation: its target/fan-out + invocation counts, timing, outcome, circuit action, and billed compute. The monitoring + billing record.