Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 818 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 818 Bytes

Dealing with Relationships

Occasionally, it is useful to have all one-to-one, one-to-many, and many-to-many relationship data on entities. Normalizr does not handle this automatically, but this example shows a simple way of adding relationship handling on a special-case basis.

Running

# from the root directory:
yarn
# from this directory:
../../node_modules/.bin/babel-node ./index.js

Files

  • index.js: Pulls live data from the GitHub API for this project's issues and normalizes the JSON.
  • input.json: The raw JSON data before normalization.
  • output.json: The normalized output.
  • schema.js: The schema used to normalize the GitHub issues.