Giter Site home page Giter Site logo

deepajarout / graphqlapi Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 1.0 29 KB

GraphQL is a query language and server-side runtime for application programming interfaces (APIs) that prioritizes giving clients exactly the data they request and no more. GraphQL is designed to make APIs fast, flexible, and developer-friendly.Basic GraphQL API Approach. How write query for get data list and get data by id and add some new data using graphQL.

JavaScript 100.00%
graphql

graphqlapi's Introduction

Basic GraphQL API Approach

Instruction

How Run the project

1- Download the project.

2- npm install.

3-check in Browser type http://localhost:5000.

you will get the graphql screen

Query - access the data using query

//get books list with authorname
      query {
         books {
                  title,                     
                  author,
                  authorName,
                }
//get author list with books
query{
       authors {
         title,
         books
              }
         }
         
//get books by id
query{
        books(id:1){
        title,
        authorName{
        title
        }
        }
        
//get author by id
query{
     authors(id:1){
     title,
     books{
     title
     }
     }
     

Mutation - add new data

mutation {
 addBook(title:"Harry Potter series 3", author:1){
    title,
    author,
    authorName
    }
    

graphqlapi's People

Contributors

deepajarout avatar

Watchers

 avatar

Forkers

otam-mato

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.