mirror of
https://github.com/Ratstail91/sineQL.git
synced 2025-11-29 10:44:28 +11:00
15 lines
136 B
JavaScript
15 lines
136 B
JavaScript
module.exports = `
|
|
scalar Date
|
|
|
|
type Book {
|
|
String title
|
|
Author author
|
|
Date published
|
|
}
|
|
|
|
type Author {
|
|
String name
|
|
Book books
|
|
}
|
|
`;
|