Last active
December 9, 2017 14:43
-
-
Save DevNebulae/669a32fe7619bb1ebfe4bab66c6d9e8b to your computer and use it in GitHub Desktop.
GraphQL discography
This file contains hidden or 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 Album { | |
artists: [Artist!] | |
title: String! | |
tracks: [Track!] | |
} |
This file contains hidden or 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 Artist { | |
albums: [Album!] | |
name: String! | |
tracks: [Track!] | |
} |
This file contains hidden or 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 Track { | |
albums: [Album!] | |
artists: [Artist!] | |
title: String! | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment