OBJECT

Dataset

Dataset type Represents a single Dataset entity with its metadata, parameters, and associated dataset rows.

link GraphQL Schema definition

1type Dataset {
2
3# Unique identifier of the Dataset.
4id: String
5
6# The ID of the test issue associated with the Dataset.
7testIssueId: String
8
9# The ID of the test execution issue associated with the Dataset.
10testExecIssueId: String
11
12# The ID of the test plan issue associated with the Dataset.
13testPlanIssueId: String
14
15# The ID of the test step associated with the Dataset (only for test step datasets).
16testStepId: String
17
18# The ID of the call test issue (only for test step datasets).
19callTestIssueId: String
20
21# Parameters of the Dataset, represented as an array of key-value pairs.
22parameters: [Parameter]
23
24# The rows of the Dataset, representing combinatorial data.
25rows: [DatasetRow]
26
27}