OBJECT

DatasetRow

DatasetRow type Represents a single row in the Dataset, containing combinatorial data.

link GraphQL Schema definition

1type DatasetRow {
2
3# The order of the row in the Dataset.
4order: Int
5
6# The values of the row, stored String array.
7Values: [String]
8
9}