Using Express and GraphQL-Pouch as a Library

July 25, 2016 ยท View on GitHub

How to use

npm install
npm start

Some example queries

Query

{
  settingByKey(key: "mcmc") {
    id
    rev
    key
  }
}

Result

{
  "data": {
    "settingByKey": {
      "id": "A",
      "rev": "B",
      "key": "mcmc"
    }
  }
}