Skip to content

Instantly share code, notes, and snippets.

@DevNebulae
Last active December 9, 2017 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DevNebulae/669a32fe7619bb1ebfe4bab66c6d9e8b to your computer and use it in GitHub Desktop.
Save DevNebulae/669a32fe7619bb1ebfe4bab66c6d9e8b to your computer and use it in GitHub Desktop.
GraphQL discography
type Album {
artists: [Artist!]
title: String!
tracks: [Track!]
}
type Artist {
albums: [Album!]
name: String!
tracks: [Track!]
}
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