spotify-graphql
v1.4.0
Published
GraphQL schema for Spotify WebAPI
Downloads
15
Readme
Spotify GraphQL
GraphQL schema for Spotify Web API — TypeScript / Node.js (v6)
Try with the interactive console !
See spotify-graphql-examples for more examples
API documentation : http://thefrench.house/spotify-graphql/
import SpotifyGraphQLClient from '../src/spotify-graphql';
import config from './config';
SpotifyGraphQLClient(config).query(`
{
track(id: "3W2ZcrRsInZbjWylOi6KhZ") {
name
artists {
name
}
}
}
`).then(result => {
console.log(JSON.stringify(result));
});
// Print :
// {
// "data": {
// "track": {
// "name": "You & Me - Flume Remix",
// "artists": [
// {
// "name": "Disclosure"
// },
// {
// "name": "Eliza Doolittle"
// },
// {
// "name": "Flume"
// }
// ]
// }
// }
// }
Available endpoints
Albums
- Get an Album
- Get Several Albums
- Get an Album's Tracks
Artists
- Get an Artist
- Get Several Artists
- Get an Artist's Albums
- Get an Artist's Top Tracks
- Get an Artist's Related Artists
Tracks
- Get a Track
- Get Several Tracks
- Get Audio Features for a Track
- Get Audio Features for Several Tracks
Playlists
- Get a List of a User's Playlists
- Get a List of Current User's Playlists
- Get a Playlist
- Get a Playlist's Tracks
User Profiles
- Get a User's Profile
- Get Current User's Profile
User Library
- Get Current User's Saved Tracks
- Get Current User's Saved Albums
- Get Current User's Following artists (new)
Personalization
- Get User's Top Artists and Tracks
Player
- Get a User’s Available Devices (new)
- Get Information About The User’s Current Playback (new)
Available queries
me: PrivateUser
user(id: String!): PublicUser
track(id: String, name: String): Track
tracks(ids: String!): [Track]
audio_features(trackIds: String!): [AudioFeatures]
audio_feature(trackId: String!): AudioFeatures
artist(id: String, name: String): Artist
artists(ids: String!): [Artist]
album(id: String!): Album
albums(ids: String!): [Album]
playlist(id: String!, userId: String!): Playlist