Skip to content

Instantly share code, notes, and snippets.

@paramsinghvc
Created August 16, 2022 11:53
Show Gist options
  • Save paramsinghvc/18635bc82e7c38ebae137b6a369afd3d to your computer and use it in GitHub Desktop.
Save paramsinghvc/18635bc82e7c38ebae137b6a369afd3d to your computer and use it in GitHub Desktop.
type WeatherObject {
id: Int
main: String
}
type CurrentWeather {
temp: Float
weather: [WeatherObject]!
}
type Weather {
id: String!
current: CurrentWeather!
}
type Query {
weather: Weather!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment