Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # A book has a title and an author
- type Book {
- title: String
- author: Author
- }
- # An author has a name and a list of books
- type Author {
- name: String
- books: [Book]
- }
- # A publisher has identification
- type Publisher {
- name: String
- ISBN: String
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement