Skip to content
Relay is a JavaScript framework for building data-driven React applications.
JavaScript CSS
Find file
Latest commit 632d4a0 @taion taion committed with Facebook Github Bot 0 Support null-prototype mutation payload objects
Summary:This came to my attention via relay-tools/relay-local-schema#15. Recent versions of graphql-js use `null`-prototype objects for maps, which leads to the `payload.hasOwnProperty` call below failing when directly feeding the output of in-process graphql-js into Relay (e.g. with relay-local-schema).

I felt that it was trivial enough to just make this little patch here.
Closes #972

Reviewed By: josephsavona

Differential Revision: D3082405

Pulled By: wincent

fb-gh-sync-id: cb0c5fa72792a514165fc08e90bc7d5b60f684ce
shipit-source-id: cb0c5fa72792a514165fc08e90bc7d5b60f684ce

README.md

Relay Build Status npm version

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.

Learn how to use Relay in your own project.

Example

The repository comes with an implementation of TodoMVC. To try it out:

git clone https://github.com/facebook/relay.git
cd relay/examples/todo && npm install
npm start

Then, just point your browser at http://localhost:3000.

Contribute

We actively welcome pull requests, learn how to contribute.

Users

We have a community-maintained list of people and projects using Relay in production.

License

Relay is BSD licensed. We also provide an additional patent grant.

Something went wrong with that request. Please try again.