OBJECT

PollenRecord

A type that describes a pollen record

link GraphQL Schema definition

1type PollenRecord {
2
3# Date and time of measurement (ISO 8601)
4publicationDate: String!
5
6# The value for the pollen measure
7value: String!
8
9}