events
QUERY

A page of events matching the specified criteria.A maximum of 100 events can be returned in a single page. Additional events can be queried using a pagination cursor.The result list is returned in ascending stream date & time order. It starts from the earliest known event if no pagination arguments are provided.

Arguments

Name
Description
schemeId* 
String!
The scheme ID of the event.Currently, only seekAnz and seekAnzPublicTest are supported.
after 
String
An opaque cursor to the earlier bounding event.Resulting events will succeed this cursor.
before 
String
An opaque cursor to the later bounding event.Resulting events will precede this cursor.
The additional Event-specific criteria to filter by.
first 
Int
The upper limit of events to return from the start of the list.Defaults to 10 if neither first nor last are specified. Excess events will be trimmed from the end of the list.first and last cannot be specified in the same query.
last 
Int
The upper limit of events to return from the end of the list.Excess events will be trimmed from the start of the list.first and last cannot be specified in the same query.

Result

Name
Description
A page of events from a stream.

Sample

GraphQL
query ($schemeId: String!) {
  events(schemeId: $schemeId) {
    edges {
      cursor
    }
  }
}