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

https://github.com/francisco1code/introduction_to_graphql_using_node_js

First graphql application
https://github.com/francisco1code/introduction_to_graphql_using_node_js

back-end graphql

Last synced: 2 months ago
JSON representation

First graphql application

Awesome Lists containing this project

README

          

# GraphQL ![](./images/1.png)

* What is GraphQL - is a query language for [API](https://www.mulesoft.com/resources/api/what-is-an-api), GraphQL isn't tied to any specific database or storage engine and is instead backed by your existing code and data.

* How it Works - A GraphQL service is created by defining types and fields on those types, then providing functions for each field on each type. Once a GraphQL service is running (typically at a URL on a web service), it can receive GraphQL queries to validate and execute. A received query is first checked to ensure it only refers to the types and fields defined, then runs the provided functions to produce a result.

[Learn about GraphQL](https://graphql.org/learn/)