https://github.com/childishdanbino/graphql-boilerplate
GraphQL Boilerplate using KOA
https://github.com/childishdanbino/graphql-boilerplate
apollographql graphql react react-native
Last synced: 11 months ago
JSON representation
GraphQL Boilerplate using KOA
- Host: GitHub
- URL: https://github.com/childishdanbino/graphql-boilerplate
- Owner: ChildishDanbino
- License: mit
- Created: 2017-10-08T19:42:06.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-02T20:47:56.000Z (over 8 years ago)
- Last Synced: 2025-07-23T10:53:33.188Z (12 months ago)
- Topics: apollographql, graphql, react, react-native
- Language: JavaScript
- Size: 6.28 MB
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# graphql-boilerplate
GraphQL Boilerplate using KOA built for scability. Allows for multiple connections for various services.
To Install:
Clone Repo and Run:
```javascript
npm install
npm run dev
```
Graph will start on port 3003: You can play around with the GoogleMaps API by going to:
```http://localhost:3003/graphiql```
Example Query:
```javascript
query getCoordinates {
coordinates(
adddressLine1: "123 My Test Lane"
city: "San Francisco"
state: "CA"
) {
latitude
longitude
}
}
```
[Interested in contributing?](https://github.com/Daadler6/graphql-boilerplate/blob/master/CONTRIBUTING.md)