https://github.com/ajeetchaulagain/graphql-basics
To Demonstrate graphql concepts with Node
https://github.com/ajeetchaulagain/graphql-basics
Last synced: 4 months ago
JSON representation
To Demonstrate graphql concepts with Node
- Host: GitHub
- URL: https://github.com/ajeetchaulagain/graphql-basics
- Owner: ajeetchaulagain
- Created: 2021-02-18T04:54:08.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-12-09T22:29:57.000Z (7 months ago)
- Last Synced: 2025-01-15T11:11:06.075Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 628 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
## GraphQL Basics
This project is created to demonstrate the graphql concept with Node. Basic API is created in this project
## Tools and Libraries used
- Node is used as Runtime environment
- graphql-yoga is used as a GraphQL Server for Node## How to Run
Given node and npm is available in the machine, run the following commands
- `git clone https://github.com/ajeetchaulagain/graphql-basics.git`
- `cd graphql-basics`
- `npm i`
- `npm run start` - to run the development server. You can view the Graphql Playground running on http://localhost:4000/ from where you can test the graphql API.## Note
This project is created to experiment graphql concepts for my own use. So code might change eventually.