OBJECT
Weather
A type that describes the weather status
link GraphQL Schema definition
1 type Weather { 2 3 # Current temperature in degrees Celsius 4 Float! : 5 6 # Current humidity level in % 7 Int : 8 9 # Current pressure level in hPa 10 Int : 11 12 # Weather condition within the group 13 String : 14 15 # Weather condition code (https://openweathermap.org/weather-conditions) 16 Int! : 17 18 }