OBJECT
getDataset
link GraphQL Schema definition
1 Query getDataset { 2 3 #   Returns a Dataset by its testIssueId. 4 #  5 # Arguments 6 #   testIssueId: The unique identifier of the Dataset to be returned. 7 #   testExecIssueId: (Optional) The unique identifier of the Test Execution. 8 #   testPlanIssueId: (Optional) The unique identifier of the Test Plan. 9 #   callTestIssueId: (Optional) The unique identifier of the Test Call. 10 (: String!, : String, : String, : String): Dataset  11 12 } 
    link Example
The Query below returns a Dataset.
{
    getDataset(testIssueId: "12345") {
        id
        parameters {
            name
            type
            listValues
        }
        rows { 
          order 
          Values
        }
    }
}