Skip to main content

gameModelEvents

Query the function-invocation event log (audit trail) with optional filters and pagination. Useful for debugging functions or showing recent activity. Requires a valid token.

gameModelEvents(
appId: BigInt!
sessionId: String
selfContainerId: String
functionName: String
success: Boolean
limit: Int
offset: Int
): [GmEvent!]!

Arguments

gameModelEvents.appId ● BigInt! non-null scalar

The app (tenant) whose events to query.

gameModelEvents.sessionId ● String scalar

Optional: only events in this session.

gameModelEvents.selfContainerId ● String scalar

Optional: only events whose self container was this UUID.

gameModelEvents.functionName ● String scalar

Optional: only events for this function name.

gameModelEvents.success ● Boolean scalar

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

gameModelEvents.limit ● Int deprecated scalar

DEPRECATED

Use gameModelEventsConnection(first:, after:) instead. See /overview/pagination. Removal no earlier than 2027-01-01.

Max number of events to return (page size).

gameModelEvents.offset ● Int deprecated scalar

DEPRECATED

Use gameModelEventsConnection(first:, after:) instead. See /overview/pagination. Removal no earlier than 2027-01-01.

Number of events to skip (for pagination).

Type

GmEvent object

An audit-log entry recording one function invocation and its outcome.