Skip to content

Dhruvaraju/graphql-alpha

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

graphql-alpha

Learning Graph QL

What is Graphql

It is a query language which is used for extracting multiple data sources. Ideally deployed when there is heavy nesting involved. Developed by facebook.

Get many resources in a single request

GraphQL queries access not just the properties of one resource but also smoothly follow references between them. While typical REST APIs require loading from multiple URLs, GraphQL APIs get all the data your app needs in a single request. Apps using GraphQL can be quick even on slow mobile network connections.

Depending upon the way they are developed.

Initial Setup

  • IDE of choice

  • Node.js Installed

  • Go to folder of your choice and initiate it as npm project by running

    npm init
    
  • Install the below mentioned packages:

      npm install express express-graphql graphql nodemon
    
  • Optionally you can install babel packages, if you are going to use es6 specific syntax #optional

    npm install --save-dev babel-cli babel-preset-env babel-preset-stage-0
    

About

GraphQl using nodejs

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published