GraphQL — Principles and Schema basics

CSP
Level Up Coding
Published in
5 min readNov 9, 2023

--

GraphQL is a query language designed to build client applications by providing an intuitive and flexible syntax and system for describing their data requirements and interactions. GraphQL provides a strong type system and declarative approach to data-fetching.

The type system or schema is commonly represented through Schema Definition Language (SDL).

//SDL
type Query {…

--

--

Striving to become my better self. I write on well researched thought provoking topics.