OBJECT

AirStation

A type that describes the components of an air station

link GraphQL Schema definition

1type AirStation {
2
3# Unique air station identifier
4id: Int!
5
6# Name of the air station
7title: String!
8
9# Address of the air station
10address: String!
11
12# Location of the air station
13geometry: Point
14
15# Records of the air station
16records: [AirRecord]
17
18}

link Required by