OBJECT

Weather

A type that describes the weather status

link GraphQL Schema definition

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

link Required by