https://github.com/hardyscc/simple-graphql-server
The most simple GraphQL Server for Testing
https://github.com/hardyscc/simple-graphql-server
Last synced: 18 days ago
JSON representation
The most simple GraphQL Server for Testing
- Host: GitHub
- URL: https://github.com/hardyscc/simple-graphql-server
- Owner: hardyscc
- Created: 2017-07-06T02:28:32.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-07T01:58:09.000Z (almost 9 years ago)
- Last Synced: 2025-03-03T14:11:50.070Z (over 1 year ago)
- Language: JavaScript
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# The most simple GraphQL Server for Testing
## Quick start
- npm install
- npm start
Open browser with http://localhost:3000/graphiql for Testing
Or use CURL command line tool
```
curl -X POST \
-H "Content-Type: application/json" \
-d '{"query": "{ viewer { id name } }"}' \
http://localhost:3000/graphql
```