Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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')

}
```