OBJECT

ResultsExample

Results Example Type

link GraphQL Schema definition

1type ResultsExample {
2
3# Whether or not the Result was imported.
4wasImported: String
5
6# Duration of the Result.
7duration: Float
8
9# Status of the Result.
10status: StepStatus
11
12# Hooks of the Results.
13hooks: [ResultsStep]
14
15# Backgrounds of the Results.
16backgrounds: [ResultsStep]
17
18# Steps of the Results.
19steps: [ResultsStep]
20
21}