Skip to main content
Version: Latest

DummySlowTickEvent

description

Payload emitted by dummySlowTick.

The payload includes the originating intervalMs / durationS so a router/observer can correlate received events with the requested cadence without having to remember the operation variables.

type DummySlowTickEvent {
tick: Int!
emittedAt: String!
intervalMs: Int!
durationS: Int!
}

Fields

DummySlowTickEvent.tick ● Int! non-null scalar graph-ql-types

Zero-based tick index. The first emitted event is always tick 0.

DummySlowTickEvent.emittedAt ● String! non-null scalar graph-ql-types

ISO 8601 timestamp captured at the moment the tick was produced by the resolver. Example: "2026-05-18T10:30:00.000Z".

DummySlowTickEvent.intervalMs ● Int! non-null scalar graph-ql-types

The intervalMs value the subscription was started with.

DummySlowTickEvent.durationS ● Int! non-null scalar graph-ql-types

The durationS value the subscription was started with.

Returned By

dummySlowTick subscription