Giter Club home page Giter Club logo

graphql-getting-started's Introduction

GraphQL

GitHub license npm version npm version npm version

Project is to learn GraphQl. Single api which gives what we query for what we need. Go through their website GraphQL.

Mutation is used for posting and Query is used for getting data from backend

Start Execution

Fork the repository and install local dependencies by running below command.

 $ npm install

Run the mongoDB locally and run the below command.

 $ node app.js

After execution open the browser and go to this link //localhost:3000/graphql. Now you can see the editor window used for mutation and query

Mutation

Paste the bellow code in left panel for posting data to DB. If collection is not created bu running mutation command, it will create DB with name employeeDataBase and creates collection employee under it.

mutation {
  employeeAdd(id: 824, name: "Rachel Green", department: "clothing", salary: 87000) {
    id
    name
    department
    salary
  }
}

Query

You can query with the _id created by mongoDB and get required parameters mentioned in query. Run the below command with the query parameter.

query {
  employee(_id: "5edcecfe0fdc4f5e0081c89f") {
    id
    name
    department
    salary
  }
}

Enjoy GraphQL and Explore More.

graphql-getting-started's People

Contributors

kar-21 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.