OBJECT

WaterRecord

A type that describes a water record

link GraphQL Schema definition

1type WaterRecord {
2
3# Id of the bulletin
4id: String!
5
6# Date and time of measurement (ISO 8601)
7creationDate: String!
8
9# Result of the measure
10result: String
11
12}