Juro Oravec
Juro Oravec
Hey @DavidWells thanks for pointers, sounds good! I'll get to it in the next few days.
This is my workaround: ```js function chainPlugins(plugins: any[]) { if (!plugins) { throw TypeError("chainPlugin requires a list of plugins."); } const chainedPlugins = plugins .map((plugin, index, arr) => { const...
Hi David, I was thinking of a more granular/modular payload modification. Here’s graphical explanation of the modularity I had in mind. In this example, plugins C, F and G are...
Also, for completeness, the workaround I've posted before didn't work as expected, so this behaviour was ultimately achieved by two functions, one which composed multiple plugins objects into a single...
Hi David, thanks for the reply. I don't have detailed insight into the codebase, so what's the purpose of merging the payloads? Is there a case where that's preferred over...
@Mando75 You are absolutely amazing 💯 💯 We are moving to a similar setup. I came up against this error when transitioning from mocking module imports that wrap individual queries...
The issue with `Cannot read property 'nextTick' of undefined` has been resolved for me. However, I still experience that, when unit testing, then sometimes the queries are not re-triggered when...
Just experienced this as well. The fetch policy was set to `cache-first`. In first component (on empty cache), `onResult` was triggered. In second component (populated cache), `onResult` was never triggered....
Hi, in my case, I was looking at Molstar as a potential visualisation lib (e.g. similar to the Alpha Orbitals example). Molstar is great in regards to features and modularity....
@iliyaZelenko Could you review this one?