wundergraph.andert.me/.wundergraph/operations/Weather.graphql

24 lines
438 B
GraphQL
Raw Normal View History

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