An open API service indexing awesome lists of open source software.

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

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
```