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

https://github.com/monyster/express-graphql


https://github.com/monyster/express-graphql

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Express-Graphql

## Usage

Install dependencies

```
npm install
```

Run file

```
node server.js
```

Server starts on port 5454.
Change in server.js

```
Line 5. const port = 5454;
```

To check you can enter

```
{
authors {
twitterHandle
}
}
```

```
{
posts {
id
title
author {
name
}
}
}

```