mirror of
https://github.com/Ratstail91/sineql-demo.git
synced 2026-05-06 15:40:11 +10:00
29 lines
302 B
JavaScript
29 lines
302 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
|
|
}
|
|
|
|
scalar Date
|
|
|
|
type Book {
|
|
String title
|
|
Date published
|
|
}
|
|
|
|
type Author {
|
|
String name
|
|
Book books
|
|
}
|
|
`;
|