Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 939 Bytes

File metadata and controls

15 lines (12 loc) · 939 Bytes
name description url github npm
Relay
Facebook's framework for building React applications that talk to a GraphQL backend.
facebook/relay
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.