Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikebild/graphql-pouch-as-library
Using Express and GraphQL-Pouch as a Library
https://github.com/mikebild/graphql-pouch-as-library
Last synced: 9 days ago
JSON representation
Using Express and GraphQL-Pouch as a Library
- Host: GitHub
- URL: https://github.com/mikebild/graphql-pouch-as-library
- Owner: MikeBild
- Created: 2016-07-25T05:06:38.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-07-25T05:50:11.000Z (over 8 years ago)
- Last Synced: 2024-10-11T12:45:02.926Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 1000 Bytes
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Using Express and GraphQL-Pouch as a Library
## How to use
```bash
npm install
npm start
```## Some example queries
__Query__
```graphql
{
settingByKey(key: "mcmc") {
id
rev
key
}
}
```__Result__
```json
{
"data": {
"settingByKey": {
"id": "A",
"rev": "B",
"key": "mcmc"
}
}
}
```