OBJECT
Dataset
Dataset type Represents a single Dataset entity with its metadata, parameters, and associated dataset rows.
link GraphQL Schema definition
1 type Dataset { 2 3 # Unique identifier of the Dataset. 4 : String 5 6 # The ID of the test issue associated with the Dataset. 7 : String 8 9 # The ID of the test execution issue associated with the Dataset. 10 : String 11 12 # The ID of the test plan issue associated with the Dataset. 13 : String 14 15 # The ID of the test step associated with the Dataset (only for test step datasets). 16 : String 17 18 # The ID of the call test issue (only for test step datasets). 19 : String 20 21 # Parameters of the Dataset, represented as an array of key-value pairs. 22 : [Parameter] 23 24 # The rows of the Dataset, representing combinatorial data. 25 : [DatasetRow] 26 27 }