Finished refactoring, it still dumps everything

This commit is contained in:
2020-09-05 02:12:36 +10:00
parent 7fa4c56bcc
commit d52b63bcf4
3 changed files with 33 additions and 25 deletions

View File

@@ -2,13 +2,13 @@ module.exports = `
scalar Date
type Book {
!String title
String title
Author author
Date published
}
type Author {
!String name
Book[] books
String name
Book books
}
`;