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