Skip to content

Releases: lowsky/spotify-graphql-server

async/await

24 Nov 09:44
Compare
Choose a tag to compare
  • mainly switched to async/await syntax (in resolvers)
  • add tracking on main page
  • upgraded GraphQL libraries

apollo CORS

24 Nov 09:54
Compare
Choose a tag to compare
  • enabling CORS by adding headers for latest apollo client

blog-post-1-basic-server

04 Jan 17:36
Compare
Choose a tag to compare

Just serves Spotify info about the artist (image, id) when searching for a part of the artists name.

query {
  queryArtists(byName:"Rolling Stone") {
    name
    id
  }
}

Authenticated requests from Spotify

24 Nov 09:47
Compare
Choose a tag to compare