Event
No description
type Event implements Previewable {
actor: Actor
change: ChangeTypeUnion
createdAt: DateTime!
id: ID!
preview: [Int!]
}
Fields
Event.actor ● Actor union common
The person or thing that triggered the action.
Event.change ● ChangeTypeUnion union common
The details of the change caused by the event.
Event.createdAt ● DateTime! non-null scalar common
The date and time that the event was created.
Event.id ● ID! non-null scalar common
Event.preview ● [Int!] list scalar common
The preview lines and their respective lengths.
Interfaces
Previewable interface common
A preview is a list of integers representing the number of lines and the respective lengths of multi-line content, for example messages, merges, and ratings. It can be used to build a visual approximation of the content of the change while the full change is being fetched.
An object implements previewable if preview lines can be derived from its
content.
Member of
EventConnection object ● EventEdge object