OBJECT

PollenMeasure

A type thath describes a pollen measure

link GraphQL Schema definition

1type PollenMeasure {
2
3# Pollen substance measured in the environment
4id: String!
5
6# Name of the pollen measure
7title: String!
8
9# Description of the pollen measure
10description: String
11
12# Reign of the pollen measure
13reino: String
14
15# Family of the pollen measure
16familia: String
17
18# Image of the pollen measure
19image: String!
20
21# Observations for the pollen measure
22observation: [PollenRecord]!
23
24}

link Required by