OBJECT

GoLiveNotificationEdge

GoLiveNotificationEdges are returned by a given GoLiveNotificationConnection.

link GraphQL Schema definition

1type GoLiveNotificationEdge {
2
3# A GoLiveNotification cursor is represented by an exclusive stream start time.
4cursor: Cursor!
5
6# The actual GoLiveNotification payload associated with a given edge.
7node: GoLiveNotification
8
9}