neistow

Results 14 comments of neistow

Same issue with SSR. Hydration takes ~10 secs after the initial page load if `Apollo` is injected in any component that is rendered

@PowerKiKi I've made a repo with reproducible [example](https://github.com/neistow/apollo-ssr-stall) on the latest angular version The results are the following for the browser. `ApplicationRef.isStable` took ~10sec. ![image](https://github.com/kamilkisiela/apollo-angular/assets/55974615/64643d9b-9907-45fd-918e-6e3740fb84ea) For the server: ![image](https://github.com/kamilkisiela/apollo-angular/assets/55974615/af724ee2-d746-4cfa-aecc-5286218fe6e9)

I've managed to find out the issue. ...So the problem is in `ApolloClient` from `@apollo/client/core`. There's an option in the client called `connectToDevTools`, which triggers the [devtools connect](https://github.com/apollographql/apollo-client/blob/9c5a8cee40900125fe5037d573e6daedd619075f/src/core/ApolloClient.ts#L284) that uses...

Hi @billbogaiv, Was a bit busy this month but today we had again an issue with Hybird model binding attribute so I decided that today is the day to come...

Registering `HybridModelBinder` in the services won't help. I've updated sample repo so you can test it and ensure that even with `HybridModelBinder` registered in services there is still null when...

@bradwilson Thanks for the answer. I’d like to try and add support for this. Does it align with the current library priorities?

@dotnet-policy-service agree

I Ran `BuildAll` locally, and everything succeeded, should be good now.

[This](https://tunit.dev/docs/examples/complex-test-infrastructure#real-world-example-full-stack-integration-testing) is the kind of composition that fixtures in xUnit are missing

For now I resorted to adding config explicitly, but I think replacing `_mapper.Map` call with `collection.Select(x => _mapper.Map(x)).ToArray()` would work, since non collection mapping works as expected.