Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 533 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 533 Bytes

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!