jaylong255 / graphql-example

A basic example of a GraphQL implementation with some information and opinion on it and maybe some comparison with other related solutions. Also, probably a spike into some popular tooling and community packages. I don't know. Just a strong starting point for anyone who is mostly new to it.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GraphQL Example

A basic example of a GraphQL implementation with some information and opinion on it and maybe some comparison with other related solutions. Also, probably a spike into some popular tooling and community packages. I don't know. Just a strong starting point for anyone who is mostly new to it.

The GraphQL landing page can be found here.

What is GraphQL?

GraphQL is an open-source data query and manipulation language for APIs and a query runtime engine.

GraphQL enables declarative data fetching where a client can specify exactly what data it needs from an API.


GraphQL is a query language and server-side runtime for application programming interfaces (APIs) that prioritizes giving clients exactly the data they request and no more.

GraphQL is designed to make APIs fast, flexible, and developer-friendly.


GraphQL is a query language for your API, and a server-side runtime for executing queries 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.


GraphQL is an open source query language that describes how a client should request information through an API.

In a broad sense, GraphQL is a syntax developers can use to ask for specific data and return that data from multiple sources.


GraphQL is a flexible query language that uses a type system to efficiently return data with dynamic queries.

SQL(structured query language) is an older, more adopted language standard used specifically for tabular/relational database systems.

Consider GraphQL if you want your API to be built on a NoSQL database.

About

A basic example of a GraphQL implementation with some information and opinion on it and maybe some comparison with other related solutions. Also, probably a spike into some popular tooling and community packages. I don't know. Just a strong starting point for anyone who is mostly new to it.


Languages

Language:JavaScript 100.0%