24 lines
511 B
GraphQL
Raw Normal View History

2022-11-02 18:49:31 +01:00
query ($city: String!) {
weather_getCityByName(name: $city config: {units: metric}) {
2022-11-02 18:50:27 +01:00
# remove the comments to add the coordinates to the query
# coordinates: coord {
# lat
# lon
# }
2022-11-02 18:49:31 +01:00
country
weather {
temperature {
actual
feelsLike
min
max
}
summary {
title
description
icon
}
}
}
}