OBJECT

Parameter

Parameter type Represents a single parameter in the Dataset.

link GraphQL Schema definition

1type Parameter {
2
3# The name of the parameter.
4name: String
5
6# The type of the parameter.
7type: String
8
9# The ID of the project list associated with the parameter.
10projectListId: String
11
12# Indicates whether the parameter supports combinations.
13combinations: Boolean
14
15# The list of values for the parameter.
16listValues: [String]
17
18}