An open API service indexing awesome lists of open source software.

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:

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
}
}
```