Skip to main content

gameModelTimers

Pending one-shot timers for the app, soonest first. A timer leaves this list the moment it is claimed for execution, so an empty list means nothing is scheduled (not that nothing ran). Requires app-admin ('manage_apps').

gameModelTimers(
appId: BigInt!
sessionId: String
limit: Int
): [GmTimer!]!

Arguments

gameModelTimers.appId ● BigInt! non-null scalar

The app (tenant) whose pending timers to list.

gameModelTimers.sessionId ● String scalar

Only timers scoped to this session.

gameModelTimers.limit ● Int scalar

Max rows to return (1-200, default 50).

Type

GmTimer object

A pending one-shot timer: a delayed invocation that has been armed but has not fired yet. Timers are removed from this list the moment they are claimed for execution.