Giter VIP home page Giter VIP logo

apollo-graphql-server-poc's Introduction

apollo-graphql-server-poc

apollo-graphql-server-poc

This projects contains simple CRUD operations and basic subscriptions using Graphql.

For detailed note kindly visit : URL for blog post

To start ,

npm install

npm run dev

http://localhost:4000/graphiql open it in your browser

Use below queries and mutation for testing either in Graphiql or Insomnia.

To Get All books:

{
	allBooks {  
	title,author,id,description
	}
 }

To Add a Book:

mutation {
	addBook(input:{id:1,author:"author 1",title:"title 1",description:"description 2"}) {
		id,
		title,
		author,
		description
	}
}

To Get a book by Id:

{
    book(id:1) {
        id,title
    }
}

Update a book:

mutation {
	updateBook(input:{id:1,author:"author changed"}){
		id,title,author,description
	}
}

To Delete a book:

mutation{
	deleteBook(id:1){
		id,title,author,description
	}
}

For Subscription:

subscription {
  notifyUsers {    
    message
    book{
      id
      description
      title
      author
    }
  }
}

apollo-graphql-server-poc's People

Contributors

sankar-rajendran avatar

Stargazers

Babak Karimi Asl avatar

Watchers

James Cloos avatar  avatar

Forkers

briansu2004

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.