Last active
January 27, 2019 18:36
-
-
Save AlecAivazis/c2261d0f446248528a772a95746d45a2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extend type User { | |
favoritePhoto: Photo | |
photoGallery: [Photo] | |
} | |
extend type Auction { | |
photo: Photo! | |
} | |
extend type Photo { | |
owner: User! | |
auction: Auction! | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment