From b504e276495450e9db498231c641cb1679626d8b Mon Sep 17 00:00:00 2001 From: Orta Therox Date: Sat, 18 Jun 2022 13:05:24 +0200 Subject: [PATCH] Improve the relay description --- .../code/language-support/javascript/client/relay.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/content/code/language-support/javascript/client/relay.md b/src/content/code/language-support/javascript/client/relay.md index ea2d96a16d..709d49f723 100644 --- a/src/content/code/language-support/javascript/client/relay.md +++ b/src/content/code/language-support/javascript/client/relay.md @@ -6,4 +6,11 @@ github: facebook/relay npm: "react-relay" --- +Relay is a JavaScript framework for building data-driven React applications. + +* **Declarative:** Never again communicate with your data store using an imperative API. Simply declare your data requirements using GraphQL and let Relay figure out how and when to fetch your data. +* **Colocation:** Queries live next to the views that rely on them, so you can easily reason about your app. Relay aggregates queries into efficient network requests to fetch only what you need. +* **Mutations:** Relay lets you mutate data on the client and server using GraphQL mutations, and offers automatic data consistency, optimistic updates, and error handling. + +[See how to use Relay in your own project](https://relay.dev/docs/en/introduction-to-relay).