Guest User

Untitled

a guest
Feb 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. type Address {
  2. line1: String
  3. city: String
  4. state: String
  5. zip: String
  6. }
  7.  
  8. fragment NameAndAddress on Person, Business {
  9. name: String
  10. address: Address
  11. }
  12.  
  13. type Business {
  14. ...NameAndAddress
  15. hours: String
  16. }
  17.  
  18. type Customer {
  19. ...NameAndAddress
  20. customerSince: Date
  21. }
Add Comment
Please, Sign In to add comment