Skip to main content

computeModuleRuns

List compute-module runs (the monitoring + audit trail of executions), newest first, optionally filtered by module and/or outcome. Rows are written by the runtime; empty until modules execute (Phase 2). Requires the org 'view_compute_diagnostics' permission.

computeModuleRuns(
appId: BigInt!
moduleName: String
success: Boolean
limit: Int
offset: Int
): [WasmModuleRun!]!

Arguments

computeModuleRuns.appId ● BigInt! non-null scalar

The app (tenant) whose runs to list.

computeModuleRuns.moduleName ● String scalar

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

computeModuleRuns.success ● Boolean scalar

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

computeModuleRuns.limit ● Int scalar

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

computeModuleRuns.offset ● Int scalar

Number of runs to skip (pagination).

Type

WasmModuleRun object

One recorded compute execution (init / tick batch / event / invoke): timing, fuel, host-call counts, outcome. Written by the runtime (Phase 2); empty until modules execute.