falcor
falcor copied to clipboard
Graphistry forks of the FalcorJS family of projects in a lerna-powered mono-repo.
Updated package versions: * root: 2.11.3 * falcor-model-rxjs: 2.11.0 * falcor-query-syntax: 2.11.0 * falcor-react-redux: 2.11.0 * falcor-react-schema: 2.11.0 * falcor-router-saddle: 2.11.0 * falcor-router: 2.11.0 * falcor-socket-datasource: 2.11.3 * falcor: 2.11.0...
Is the `FalcorJSON.$__status` property supposed to reliably determine whether or not a model query is done emitting? I'm running into the following issue: 1. model cache is populated with some...
```javascript const model = new Model({ source: { get: () => Observable.timer(100) .concat(Observable.throw({ status: 500 })) }, recycleJSON }) model.get(['items', 0, 'title']) .subscribe({ error(err) { console.log('Error', err) } }); ```...