You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have implemented an falcor-angular application to display GitHub User. Code is here. When I activate batching on the model in client/webapp/service/falcor.service.ts the responses in client/webapp/followingList.component.ts and client/webapp/followerList.component.ts are undefined.
When I watch the network request send by falcor, all paths are included: [["user","KordonDev",["imageUrl","login","name","stars"]],["user","KordonDev",["follower","following"],{"from":0,"to":10},["login","name","stars"]],["user","KordonDev","repositories",{"from":0,"to":10},["name","stars"]]]
Recent releases of Falcor fixed several bugs in request path deduplication, and Falcor 2 added support for partial request path deduplication. I'm closing this under the assumption that this issue has been resolved; if this is not the case, please reopen this issue or create a new one.
I have implemented an falcor-angular application to display GitHub User. Code is here. When I activate batching on the model in
client/webapp/service/falcor.service.ts
the responses inclient/webapp/followingList.component.ts
andclient/webapp/followerList.component.ts
areundefined
.When I watch the network request send by falcor, all paths are included:
[["user","KordonDev",["imageUrl","login","name","stars"]],["user","KordonDev",["follower","following"],{"from":0,"to":10},["login","name","stars"]],["user","KordonDev","repositories",{"from":0,"to":10},["name","stars"]]]
And also in the response the values are included:
Because the data is available but is not received by the requests I think the splitting of data to requests fails.
The text was updated successfully, but these errors were encountered: