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

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

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!