Last active
January 26, 2019 23:26
-
-
Save AlecAivazis/daf7d09b483e238c908e51f900c522fb 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
type User { | |
username: String! | |
history: [Bid] | |
favoritePhoto: Photo | |
photoGallery: [Photo] | |
} | |
type Auction { | |
photo: Photo | |
offers: [Bid] | |
highestOffer: Bid | |
} | |
type Bid { | |
user: User! | |
amount: Int! | |
} |
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
type User { | |
username: String! | |
history: [Bid] | |
favoritePhoto: Photo | |
photoGallery: [Photo] | |
} | |
type Auction { | |
photo: Photo | |
offers: [Bid] | |
highestOffer: Bid | |
} | |
type Bid { | |
user: User! | |
amount: Int! | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment