wundergraph.andert.me/.wundergraph/operations/Weather.graphql
2022-11-02 18:49:31 +01:00

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
}
}
}
}