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