Graph is missing. No edges
msanfilippof opened this issue · 5 comments
msanfilippof commented
I am using reselect@4
but there are still not arrows/edges in the graph.
I manually checked the lib and works fine, I can output the:
[ { from: 'getEnv', to: 'getApiUrl' }, ... ]
but the window.__RESELECT_TOOLS__.selectorGraph()
gives back edges: []
FYI, output and input in devtool are undefined.
My app works fine. I am doing this
R.registerSelectors(selectors);
R.selectorGraph();
Please let me know if I'm missing something
skortchmark9 commented
Hmmm. Well, if edges is empty then there won't be any arrows. But it looks like the from/to you posted is an edge? How did you produce that?
andreadito commented
I have the same issue
msanfilippof commented
@skortchmark9 I have some selectors that are exported as this
import * as some1 from './some1'
export default {
...obj1
}
OliverJAsh commented
I'm running into the same issue. This even happens when I copy/paste the example in the docs:
OliverJAsh commented