BenjaBobs

Results 31 comments of BenjaBobs

I did have Application Insights enabled but there is no information other than the exception message. It was a very long running request though, >80k upserts, so I think it...

Maybe the new [Source Generators](https://devblogs.microsoft.com/dotnet/introducing-c-source-generators/) can be of use/inspiration.

We're solving this by having a top-level resolver that converts the GraphQL query to a Gremlin query so we can fetch the whole dataset in one query to our CosmosDB...

I don't have anything open source, but I can talk a bit about my strategy. Firstly, all of my entities are stored in Cosmos, I don't know how I will...

If you can wrap your mind around using CosmosDB SQL api, I think that might give you better performance, and it also seem to be a bit ahead of Gremlin...

This guide is quite old. I suggest looking up [Dotnet Core Boxed GraphQL](https://github.com/Dotnet-Boxed/Templates/blob/master/Docs/GraphQL.md).

Hi. The roslyn repo has a relatively new [Source Generators Proposal](https://github.com/dotnet/roslyn/blob/993d498a1f794cbc0980699b618d6406b9eb7455/docs/features/source-generators.md), different from the [original](https://github.com/dotnet/roslyn/blob/993d498a1f794cbc0980699b618d6406b9eb7455/docs/features/generators.md). I'm not sure if any of their thoughts would be useful, but I thought I'd...

[Introducing C# Source Generators](https://devblogs.microsoft.com/dotnet/introducing-c-source-generators/)

The way to do it is to have a backplane that notifies all the instances, and adds the message to all the subscriptions. In my team we use Azure Service...

I made it work by adding the option `--forceExit` ```diff - "test": "vite-jest", + "test": "vite-jest --forceExit", ``` You can close this issue if you want. 🙂