Difference between revisions of "GraphQL"

From Organic Design wiki
(GraphQL and Apollo)
 
(Add graphqurl, add note on apollo v4 state.)
 
Line 1: Line 1:
 
[https://graphql.org/ GraphQL] is a query language for API's that uses a single endpoint and solves the under/over fetching problems. GraphQL can be useful for larger more complicated applications due to it's simple system for retrieving parts of data and the required interconnected parts.
 
[https://graphql.org/ GraphQL] is a query language for API's that uses a single endpoint and solves the under/over fetching problems. GraphQL can be useful for larger more complicated applications due to it's simple system for retrieving parts of data and the required interconnected parts.
 +
 +
== graphqurl ==
 +
*https://github.com/hasura/graphqurl
  
 
== Apollo ==
 
== Apollo ==
Line 5: Line 8:
  
 
=== Vue ===
 
=== Vue ===
 +
Note this isn't work with Vue 3 properly despite what it says - best wait for a full release of V4 before using it.
 
* https://v4.apollo.vuejs.org/guide-option/
 
* https://v4.apollo.vuejs.org/guide-option/

Latest revision as of 04:04, 25 February 2021

GraphQL is a query language for API's that uses a single endpoint and solves the under/over fetching problems. GraphQL can be useful for larger more complicated applications due to it's simple system for retrieving parts of data and the required interconnected parts.

graphqurl

Apollo

Apollo is a popular platform that implements GraphQL with modules for both the client side and server side.

Vue

Note this isn't work with Vue 3 properly despite what it says - best wait for a full release of V4 before using it.