Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/softchris/graphql-server
a graphql API using graphql express
https://github.com/softchris/graphql-server
Last synced: 13 days ago
JSON representation
a graphql API using graphql express
- Host: GitHub
- URL: https://github.com/softchris/graphql-server
- Owner: softchris
- Created: 2018-04-08T17:48:32.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T00:59:44.000Z (about 2 years ago)
- Last Synced: 2024-12-15T17:15:13.956Z (2 months ago)
- Language: JavaScript
- Size: 23.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Install
```
npm install
```# Run
```
npm start
```Navigate to localhost:4000/graphql
You should see a GraphiQL webpage that you can query
The following queries are supported:
```
{
hello,
humans,
}
```The following mutators are supported:
```
{
addHuman('add name here')}
```