Advertisement
oilujc

girosapp types

May 4th, 2020
2,283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. type Book {
  2.   title: String
  3.   author: Author
  4. }
  5.  
  6. type Author {
  7.   name: String
  8.   books: [Book]
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement