Skip to content

Commit

Permalink
Postman created spotify v1
Browse files Browse the repository at this point in the history
Commit reference: ZDBhMTY2ZjAtN2JhZC00MTQ4LWE2NjctOWU3ZjFmNjE0M2Q2
  • Loading branch information
Postman Integration committed Jul 30, 2021
1 parent 5246f46 commit e3c4163
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions spotify-graphql-v1.idl
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
type Album {
name: String
id: ID
image: String
tracks: [Track]
}
type Artist {
name: String!
id: ID
image: String
albums(limit: Int = 10): [Album]
}
type Query {
hi(message: String = "Hi"): String
queryArtists(byName: String = "Red Hot Chili Peppers"): [Artist]
}
type Track {
name: String!
artists: [Artist]
preview_url: String
id: ID
}

0 comments on commit e3c4163

Please sign in to comment.