https://github.com/betiol/spotify-graphql
Non official GraphQL wrapper Spotify :rocket:
https://github.com/betiol/spotify-graphql
graphql koa nodejs spotify
Last synced: 24 days ago
JSON representation
Non official GraphQL wrapper Spotify :rocket:
- Host: GitHub
- URL: https://github.com/betiol/spotify-graphql
- Owner: betiol
- License: mit
- Created: 2018-04-20T11:34:16.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-23T14:15:35.000Z (about 7 years ago)
- Last Synced: 2025-04-08T08:04:25.057Z (about 2 months ago)
- Topics: graphql, koa, nodejs, spotify
- Language: JavaScript
- Homepage: https://graphql-spotify.herokuapp.com
- Size: 17.6 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spotify GraphQL Query
[Spotify GraphQL](https://graphql-spotify.herokuapp.com)
## Albums
```
query {
albums(albumId: ["41vPD50kQ7JeamkxQW7Vuy", "5U4W9E5WsYb2jUQWePT8Xm", "3KyVcddATClQKIdtaap4bV"]) {
album_type
images {
width
height
url
}
artists {
href
type
name
uri
}
uri
release_date
release_date_precision
popularity
name
label
id
href
tracks {
artists {
name
}
disc_number
duration_ms
explicit
href
id
is_local
name
preview_url
track_number
type
uri
}
}
}
```## Categories
```
query {
categories {
href
icons {
height
width
url
}
id
name
}
}
```## Category by name
```
query {
categoryByName(name: "hiphop") {
width
href
height
url
}
}
```