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
- Host: GitHub
- URL: https://github.com/francisco1code/introduction_to_graphql_using_node_js
- Owner: francisco1code
- License: mit
- Created: 2020-08-12T00:14:57.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-03-27T14:59:09.000Z (over 5 years ago)
- Last Synced: 2025-10-25T07:55:45.335Z (8 months ago)
- Topics: back-end, graphql
- Language: JavaScript
- Homepage:
- Size: 5.31 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# GraphQL 
* 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/)