OBJECT

UserAirStation

A type that describes the components of an air station for a user

link GraphQL Schema definition

1type UserAirStation {
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# Thresholds for the air station
13thresholds: [AirStationThresholds]
14
15}