Giter Site home page Giter Site logo

syzer / koa-graphql-mongodb Goto Github PK

View Code? Open in Web Editor NEW

This project forked from indreklasn/koa-graphql-mongodb

1.0 1.0 0.0 125 KB

Tutorial how to set up koa with graphql and mongodb

Home Page: https://medium.com/better-programming/how-to-set-up-a-powerful-api-with-graphql-koa-and-mongodb-crud-4459fc0720d4

JavaScript 100.00%

koa-graphql-mongodb's Introduction

HOWTO

  1. Start mongo
mongod --dbpath=./.db
  1. npm start
  2. http://localhost:9000/graphql

Mutation query

mutation {
  addGadget(
    name: "Test",
    release_date: "01.01.1970",
    by_company: "Test",
    price: "1000"
  ) {
    id,
    price
  }
}
{
  "data": {
    "addGadget": {
      "id": "5d2f022e3d12b114b221248e"
    }
  }
}
mutation {
  updateGadget(
    id: "5d2f022e3d12b114b221248e", name: "Macbook Pro",
    release_date: "January 10, 2006", by_company: "Apple",
    price: "9999") {
    id
    name
    release_date
    by_company
    price
  }
}
mutation {
  removeGadget(id: "5c51ae117eb446624aad1049") {
    id
    name
    release_date
    by_company
    price
  }
}

query

query {
	queryGadgetById(id: "5d2f040570b81523476d307b") {
    id,
    price,
  }
}
query {
	queryAllGadgets {
	  id
	}
}
query {
	queryByPriceRange(priceMin: 0, priceMax: 1200) {
    id,
    price
  }
}

koa-graphql-mongodb's People

Contributors

indreklasn avatar syzer avatar

Stargazers

 avatar

Watchers

 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.