Haz
Haz
I'm not sure too. I guess I'll just update my `warning` function implementation to use `React.warn` instead of `console.warn` when it gets released, so this package is still useful as...
Hey guys. Any updates on this?
Currently I'm combining denormalizr with [reselect](https://github.com/reactjs/reselect) to achieve this
Can't you use [reselect](https://github.com/reactjs/reselect)? I didn't test it specifically, but I'm pretty sure that it handles circular dependencies: ``` js import { createSelector } from 'reselect' import { denormalize }...
+1 the fourth argument is very elegant
I'm also getting tons of `Could not resolve` warnings even though everything works.
Hi @BrenoMazieiro. I'm not experienced enough with GraphQL to maintain it. If you're willing to build and maintain it, I can give you write access to do so. :) What...
cc/ @kybarg @Optissimum @santino @osdevisnot @protoEvangelion @ssmolinski9 @0xsven @prabhatsharma @dennisbochen @steven-haddix
Does this work for you? ```js import { fromEntities } from 'store/selectors' store.dispatch(resourceCreateRequest('posts', { title: 'foo' })).then((id) => { const detail = fromEntities.getDetail(store.getState(), 'posts', id) console.log('Yaay!', detail) }) ```
Thank you, @mininternet. Would you mind to send a PR?