OBJECT
PollenMeasure
A type thath describes a pollen measure
link GraphQL Schema definition
1 type PollenMeasure { 2 3 # Pollen substance measured in the environment 4 : String! 5 6 # Name of the pollen measure 7 : String! 8 9 # Description of the pollen measure 10 : String 11 12 # Reign of the pollen measure 13 : String 14 15 # Family of the pollen measure 16 : String 17 18 # Image of the pollen measure 19 : String! 20 21 # Observations for the pollen measure 22 : [PollenRecord]! 23 24 }