Files
sineQL/test/handlers/schema.js
2021-04-06 09:06:52 +10:00

15 lines
170 B
JavaScript

//the matching schema
module.exports = `
scalar Date
type Book {
unique String title
Date published
Float rating
}
type Author {
unique String name
Book books
}
`;