OBJECT

HypeTrainExecution

The structure that defines Hype Train Execution in a channel.

link GraphQL Schema definition

1type HypeTrainExecution {
2
3# The conductors of the Hype Train.
4conductors: [HypeTrainConductor!]!
5
6# The Hype Train config that the train was started with.
7config: HypeTrainConfig!
8
9# The reason the Hype Train was ended, if it has been ended.
10endReason: HypeTrainEndReason
11
12# The time the Hype Train was ended, if the Hype Train was a previous execution.
13endedAt: Time
14
15# The time that the Hype Train will expire at.
16expiresAt: Time!
17
18# The identifier of the execution.
19id: ID!
20
21# Boolean flag that denotes if the Hype Train is active or not.
22isActive: Boolean!
23
24# The participation events in the Hype Train.
25participations: [HypeTrainParticipation!]!
26
27# The progress structure that contains relevant information about how much
28# progress the Hype Train acheived.
29progress: HypeTrainProgress!
30
31# The time that the Hype Train started.
32startedAt: Time!
33
34# The last time the Hype Train was updated.
35updatedAt: Time!
36
37}