GithubHelp home page GithubHelp logo

expressgraphql01's Introduction

expressgraphql01

Exercise 1 uses either data in index.js Exercise 2 uses either student data or restaurant data in restaurants.json

GraphQL

here are the query and mutation structures

query getContacts{ contacts{ name email } query getContact($iid: Int = 1){ contact(id:$id){ name email } }

mutation setContacts{ setContact(input: { name: "john williams", email: "[email protected]", age:50 }){ name email age } }

query getContacts{ contacts{ name email } } mutation deleteContacts($idd: Int = 1){ deleteContact(id: $idd){ ok } }

mutation editContacts($idd: Int = 1, $age: Int = 35){ editContact(id: $idd, age: $age){ name age } }

mutation editrestaurants($idd: Int = 1, $name: String = "OLDO"){ editrestaurant(id: $idd, name: $name){ name description } } mutation setrestaurants { setrestaurant(input: { name: "Granite", description: "American"}) { name description } } mutation deleterestaurants($idd: Int = 1){ deleterestaurant(id: $idd){ ok } } query getrestaurants { restaurants { name description dishes{ name price } } } query getrestaurant($iid: Int = 1){ restaurant(id:$iid){ name description } }

expressgraphql01's People

Contributors

johntango avatar jrw0mitedu 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.