23 lines
449 B
GraphQL
23 lines
449 B
GraphQL
|
query ($city: String!) {
|
||
|
weather_getCityByName(name: $city config: {units: metric}) {
|
||
|
coordinates: coord {
|
||
|
lat
|
||
|
lon
|
||
|
}
|
||
|
country
|
||
|
weather {
|
||
|
temperature {
|
||
|
actual
|
||
|
feelsLike
|
||
|
min
|
||
|
max
|
||
|
}
|
||
|
summary {
|
||
|
title
|
||
|
description
|
||
|
icon
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|