-
-
Save PatrickJS/0d07a15f25402d92327a45bfeb91b4d7 to your computer and use it in GitHub Desktop.
falcor stuff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://github.com/Netflix/falcor-path-utils/blob/master/lib/toTree.js | |
| [ | |
| ["list",{from:0,to:9],["name","rating"]], | |
| ["list", "length"] | |
| ] | |
| -> | |
| { | |
| list: { | |
| 0: { | |
| name: null, | |
| rating: null | |
| }, | |
| ... | |
| 9: { | |
| name: null, | |
| rating: null | |
| }, | |
| length: 10 | |
| } | |
| } | |
| { | |
| documentsByGuid: { | |
| "LK234OSDLKFD": { | |
| title: "Tipe is a CMS", | |
| body: "...", | |
| author: { $type: "ref", value: ["authorsByGuid", "AKFKDLSL23423"]} | |
| } | |
| } | |
| authorsByGuid: { | |
| "AKFKDLSL23423": { | |
| name: "Jafar Husain" | |
| } | |
| } | |
| } | |
| <entity>ByGuid[<guid>].field | |
| documentsByGuid[{keys}]['author','title','body'] | |
| authorsByGuid[{keys}]['name'] | |
| { | |
| documentsByGuid: { | |
| "LK234OSDLKFD": { | |
| author: { $type: "ref", value: ["authorsByGuid", "AKFKDLSL23423"]} | |
| } | |
| } | |
| authorsByGuid: { | |
| "AKFKDLSL23423": { | |
| name: "Jafar Husain" | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment