Apollo GraphQL API created using data scrapped from my version of the Steam Games Scraper, which has the top 100 most played games and its DLCs
yarn install
To run the local dev enviorment
yarn dev
it will run at localhost:3000/graphql. This page will redirect you to Apollo Studio
These are the possible queries
query ($gameId: ID!) {
game(id: $gameId) {
...
}
game_dlcs(id: $gameId) {
...
}
games {
...
}
dlcs {
...
}
}
To see a demo of the application, go to Apollo Studio, and paste at top left this URL
https://steam-top100-apollo-api.vercel.app/graphql