nest-graphql

Create a GraphQL API over an existing Rest API. I deployed this project on Heroku. I used the following Github's APIS:

Stars
2

Nest GraphQL

Create a GraphQL API over an existing Rest Api. I deployed this project on Heroku. You can use the IDE on this link. I used the following Github's APIS:

  {
    users {
      login,
      avatar_url
    }
  }
  {
    user(login: "grandemayta") {
      name,
      company,
      location
    }
  }
  {
    repositories(login: "grandemayta") {
      name,
      language
    }
  }

Installation

$ npm install

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov

Created with Nest

This application was created with Nest. Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please read more here.

Keep calm and code!