Skip to content

mattiasmak/mrg

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Game Grid GraphQL Server

Minimal GraphQL server to serve game data for app.

Getting started

npm install 
npm start

When server is up and running, browser to url: http://localhost:4000/ and try a few queries:

query {
  tags: listTags {
    name
  }
}
query {
  gameCollectionIds: listGameCollectionIds {
    id
  }
}
query {
  games: listGames(page: 0, filter: { gameProviders: ["PLAYNGO"] }, pageSize:5) {
    pages
    currentPage
    games {
      name
      thumbnailUrl
      gameCollections {
        id
      }
    }
  }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published