Tom Jacques
Tom Jacques
What about returning a `Query` object? You could do something similar to Redux to declare how queries should be combined, and how the results of queries should be interpreted/operated. It...
I've thought about this fairly significantly, and I've changed my mind about how it might actually work best. I think keeping the API as-is actually works out quite well, but...
One other thing I forgot to mention. I _think_ Relay with GraphQL can take advantage of performing child fetches and transformations in the initial request. In order to do the...
@josephsavona thanks for the link and confirmation (and explanation!). I've used Relay in small example projects, but haven't dug around deeply into the implementation. Honestly I think GraphQL with Relay...
@josephsavona: Awesome stuff! I'll follow the progress there more closely.
I think I've got something working for this using the `Navigated` event. I'm not sure if it's spec equivalent to PhantomJS because it won't fire on reload, but I'll try...
There's actually another bug related to this. The toolset added to the window (json2 and ie tools) aren't actually available until the page `onload` event is fired. In PhantomJS they...
In phantomJS `onInitialized` is called before the DOM is ready or any JS executes on the page. Here's an example to test with: TestPage.html ``` .html Test Page callPhantom({ hello:...
Thanks for reporting this. Definitely a serious bug. I have been thinking of using page visibility API for another issue so I'll see what can be done/shared.
It's due to the way that iOS and Android handle multiple tabs. All but the displayed tab(s) have their JS frozen, so if you're relying on other tabs to relay...