Files
sineQL/server/schema.js
2020-03-03 19:31:14 +11:00

14 lines
139 B
JavaScript

module.exports = `
scalar Date
type Book {
String title
Author author
Date published
}
type Author {
!String name
!Book[] books
}
`;