Files
sineQL/server/schema.js
2020-09-05 00:05:56 +10:00

15 lines
140 B
JavaScript

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