https://github.com/monyster/express-graphql
https://github.com/monyster/express-graphql
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/monyster/express-graphql
- Owner: Monyster
- Created: 2022-11-15T17:47:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-15T18:50:56.000Z (over 2 years ago)
- Last Synced: 2025-02-03T23:55:30.157Z (4 months ago)
- Language: JavaScript
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
}
}
}```