OBJECT
UserAirStation
A type that describes the components of an air station for a user
link GraphQL Schema definition
1 type UserAirStation { 2 3 # Unique air station identifier 4 Int! : 5 6 # Name of the air station 7 String! : 8 9 # Address of the air station 10 String! : 11 12 # Thresholds for the air station 13 AirStationThresholds] : [ 14 15 }