mirror of
https://github.com/Ratstail91/sineql-demo.git
synced 2026-05-06 15:40:11 +10:00
17 lines
202 B
JavaScript
17 lines
202 B
JavaScript
module.exports =
|
|
`
|
|
type Weather {
|
|
String city
|
|
Float latitude
|
|
Float longitude
|
|
|
|
String last_updated
|
|
Float temp_c
|
|
Float temp_f
|
|
String condition
|
|
Float wind_mph
|
|
Float wind_kph
|
|
String wind_dir
|
|
}
|
|
`;
|