playerComputeRuns
List executions of player modules on a grid the caller currently owns, newest first. Every run is attributed to the grid owner it executed as; author identity never appears here.
playerComputeRuns(
appId: BigInt!
gridId: BigInt!
moduleName: String
success: Boolean
limit: Int
offset: Int
): [PlayerWasmModuleRun!]!
Arguments
playerComputeRuns.appId ● BigInt! non-null scalar
App containing the owned grid.
playerComputeRuns.gridId ● BigInt! non-null scalar
Owned grid whose runs to list.
playerComputeRuns.moduleName ● String scalar
Optional: only runs of this module. Omit for all.
playerComputeRuns.success ● Boolean scalar
Optional: filter by outcome (true = succeeded, false = failed).
playerComputeRuns.limit ● Int scalar
Max runs to return (default 50, max 200).
playerComputeRuns.offset ● Int scalar
Number of runs to skip (pagination).
Type
PlayerWasmModuleRun object
One execution of a player module (init/tick/invoke/event), attributed to the grid owner it ran as. The per-run twin of the studio WasmModuleRun, scoped to grids the caller currently owns.