Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/therise3107/GraphQL-RethinkDB
Sample application to demonstrate usage of GraphQL with RethinkDB
https://github.com/therise3107/GraphQL-RethinkDB
graphql rethinkdb
Last synced: 3 months ago
JSON representation
Sample application to demonstrate usage of GraphQL with RethinkDB
- Host: GitHub
- URL: https://github.com/therise3107/GraphQL-RethinkDB
- Owner: therise3107
- Created: 2017-03-13T12:39:10.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-01T18:04:11.000Z (over 7 years ago)
- Last Synced: 2024-07-18T12:13:36.936Z (4 months ago)
- Topics: graphql, rethinkdb
- Language: JavaScript
- Size: 2.93 KB
- Stars: 11
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# GraphQL-RethinkDB
The app itself is very easy to understand please refer to **schema/schema.js**
### Initial Setup
* Git clone , npm install
* Install RethinkDB
* Browse to RethinkDB adminstrator
* Create Desired Tables. In our case
* r.db('test').createTable('Company')
* r.db('test').createTable('Employee')
* Add Secondry Index on ( one to many relationship ) child table. In our case
* r.db('test').table('employees').indexCreate('companyId')## Coming up
* Integration with React
### To-Do
* Integration with Relay