OBJECT
ResultsExample
Results Example Type
link GraphQL Schema definition
1 type ResultsExample { 2 3 # Whether or not the Result was imported. 4 : String 5 6 # Duration of the Result. 7 : Float 8 9 # Status of the Result. 10 : StepStatus 11 12 # Hooks of the Results. 13 : [ResultsStep] 14 15 # Backgrounds of the Results. 16 : [ResultsStep] 17 18 # Steps of the Results. 19 : [ResultsStep] 20 21 }