JSPM

react-relay

0.0.0-main-65b9b9a6
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 196756
  • Score
    100M100P100Q154354F
  • License MIT

A framework for building GraphQL-driven React applications.

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-relay) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    React APIs for Relay

    This package contains a collection of React APIs: Hooks and Components that are integrated with Relay runtime.

    Example:

    // @flow
    
    import type {UserComponent_user$key} from 'UserComponent_user.graphql';
    
    const React = require('react');
    
    const {graphql, useFragment} = require('react-relay');
    
    type Props = {
      user: UserComponent_user$key,
    };
    
    function UserComponent(props: Props) {
      const data = useFragment(
        graphql`
          fragment UserComponent_user on User {
            name
            profile_picture(scale: 2) {
              uri
            }
          }
        `,
        props.user,
      );
    
      return (
        <>
          <h1>{data.name}</h1>
          <div>
            <img src={data.profile_picture?.uri} />
          </div>
        </>
      );
    }

    For complete API reference, visit https://relay.dev/.