OBJECT

MeasurementChart

link GraphQL Schema definition

1type MeasurementChart {
2id: Int!
3
4name: String!
5
6# All elements are always returned
7horizontalLabels: [String!]!
8
9# All elements are always returned
10verticalLabels: [String!]!
11
12displayUnit: String
13
14contentJSON: String!
15
16# All elements are always returned
17values: [[String!]!]!
18
19}