queryBook and createBook are working

This commit is contained in:
2022-02-27 12:12:20 +00:00
parent 6fe88da331
commit ce41108140
13 changed files with 748 additions and 16 deletions
+15
View File
@@ -13,4 +13,19 @@ type Weather {
Float wind_kph
String wind_dir
}
scalar Index
scalar Date
type Book {
Index index
String title
Date published
}
type Author {
Index index
String name
Book books
}
`;