If I use this example in README for netflix / falcor, this works:
return {path:['greeting'], value: 'Hello World'};
But if I try to change the value to an object:
return {path:['greeting'], value: {hello: 'Hello World'}};
It does not seem to work. I'm probably doing something obviously wrong, but I wanted some clarification.
source
share