posts.md

July 15, 2021 · View on GitHub

Bookmarks tagged [posts]

www.codever.land/bookmarks/t/posts

Using DataLoader to batch GraphQL requests

http://gajus.com/blog/9/using-dataloader-to-batch-requests


Introducing Relay and GraphQL

https://reactjs.org/blog/2015/02/20/introducing-relay-and-graphql.html


GraphQL Introduction

https://reactjs.org/blog/2015/05/01/graphql-introduction.html


Unofficial Relay FAQ

https://gist.github.com/wincent/598fa75e22bdfa44cf47

GitHub Gist: instantly share code, notes, and snippets.


Your First GraphQL Server

https://medium.com/the-graphqlhub/your-first-graphql-server-3c766ab4f0a2

So, today we’re going to write a small GraphQL server. I’m not going to try to persuade you to drop everything and adopt GraphQL — but if you’re curious about what this stuff looks like today and how…


GraphQL Overview - Getting Started with GraphQL and Node.js

https://blog.risingstack.com/graphql-overview-getting-started-with-graphql-and-nodejs/

Getting Started with GraphQL and Node.js](https://blog.risingstack.com/graphql-overview-getting-started-with-graphql-and-nodejs/)


4 Reasons you should try out GraphQL

https://medium.freecodecamp.org/introduction-to-graphql-1d8011b80159

Even though I’ve been developing (RESTful) APIs for some years now, I’ve started to become a big fan of GraphQL. In this post I’ll introduce you to GraphQL and what kind of advantages you will have…


Moving from REST to GraphQL

https://medium.com/@frikille/moving-from-rest-to-graphql-e3650b6f5247

I got really excited in January when GraphQL and Relay were introduced during the React conference. In the beginning of July I went to the React Europe conference. I wanted to learn more about…


Writing a Basic API with GraphQL

http://davidandsuzi.com/writing-a-basic-api-with-graphql/

GraphQL is still in its infancy in terms of documentation and ecosystem, but what we have seen so far from conference talks and in the released specification boast predictability, simplicity, and flex...


Building a GraphQL Server with Node.js and SQL

https://www.reindex.io/blog/building-a-graphql-server-with-node-js-and-sql/


GraphQL at The Financial Times

https://www.slideshare.net/LondonReact/graph-ql

Recently released by Facebook, GraphQL isn't only useful for client-server communication. Viktor will show how Red Badger used the reference implementation - g…


Relay for visual learners

http://sgwilym.github.io/relay-visual-learners/


Relay and Routing

https://medium.com/@cpojer/relay-and-routing-36b5439bad9

Relay is changing how we think about client side applications at Facebook. A large part of this is routing and its integration with our Hack/PHP stack. This post aims to explain why Relay in open…


Learn Golang + GraphQL + Relay, Part 1: Your first Golang GraphQL server

https://wehavefaces.net/learn-golang-graphql-relay-1-e59ea174a902

(Update Nov 4 2015: Huge breaking changes in the API to improve readability and usability of the package ) This week, we will start off with a simple but very achievable goal: to build a GraphQL…


Learn Golang + GraphQL + Relay, Part 2: Your first Relay application

https://wehavefaces.net/learn-golang-graphql-relay-2-a56cbcc3e341

Picking up from where we left off last week (where we build our first Golang GraphQL server), this time around, we will set out to create our first Relay application, powered by our new and shiny…


From REST to GraphQL

https://jacobwgillespie.com/from-rest-to-graphql-b4e95e94c26b/

Exploring the transition from REST APIs to GraphQL at Playlist...


GraphQL: A data query language

https://graphql.org/blog/graphql-a-query-language/


Subscriptions in GraphQL and Relay

https://graphql.org/blog/subscriptions-in-graphql-and-relay/


Relay 101: Building A Hacker News Client

https://medium.com/@clayallsopp/relay-101-building-a-hacker-news-client-bb8b2bdc76e6

React lets you build user interface components with JavaScript; Relay lets you easily connect your React components to data from a remote server. Relay accomplishes this by being opinionated — it…


GraphQL Shorthand Notation Cheatsheet

https://wehavefaces.net/graphql-shorthand-notation-cheatsheet-17cd715861b6

It is a shorthand notation to succinctly express the basic shape of your GraphQL schema and its type system. Below are further examples to illustrate how we can use the above Shorthand Notation to…


Github GraphQL API React Example

https://medium.com/@katopz/github-graphql-api-react-example-eace824d7b61

Convert (some of) that example with super basic create-react-app so everybody can have fun with it! Challenge accepted! Here’s source : https://github.com/katopz/react-apollo-graphql-github-example…


Testing a GraphQL Server using Jest

https://medium.com/entria/testing-a-graphql-server-using-jest-4e00d0e4980e

I've created this boilerplate to make it easy to start a new GraphQL project using DataLoader —https://github.com/entria/graphql-dataloader-boilerplate As our source code base grows we need more and…


How to implement viewerCanSee in GraphQL

https://medium.com/entria/how-to-implement-viewercansee-in-graphql-78cc48de7464

ViewerCanSee is a function that determine whether the current viewer (logged user) can see a given data in GraphQL. Example: viewer can only see his own credit cards: One problem that we faced using…