https://github.com/knaxus/graphql-basics
Learn about Schema, Types, Mutation & Subscription - the pillars of GraphQL
https://github.com/knaxus/graphql-basics
graphql graphql-server graphql-subscriptions
Last synced: 4 months ago
JSON representation
Learn about Schema, Types, Mutation & Subscription - the pillars of GraphQL
- Host: GitHub
- URL: https://github.com/knaxus/graphql-basics
- Owner: knaxus
- Created: 2020-04-13T07:17:02.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T11:23:48.000Z (almost 3 years ago)
- Last Synced: 2025-03-15T10:42:33.563Z (7 months ago)
- Topics: graphql, graphql-server, graphql-subscriptions
- Language: JavaScript
- Homepage:
- Size: 772 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GraphQL Basics
### What is GraphQL?
GraphQL is a query language for your API, and a server-side runtime for executing queries by using a type system you define for your data. GraphQL isn't tied to any specific database or storage engine and is instead backed by your existing code and data.### Pillars of GraphQL
- Queries
- Mutaions
- Subscriptions### Usage
You can use this project to go through the basic concepts.
- Clone the repo
- `npm install` and then `npm run dev`
- Heads up to `localhost:4000` and play with it!