Client triggered an unexpected error

I am in DotNet and have a few dozen queries going, I was refactoring one and now I am getting some strange error only when running the query from the development environment, if I run from Neo4J browser, it is all good. Inside docker (all same machine, other queries run before and after without restart), version Neo4j 5.18.1.

Query:

MATCH (A:NodeType)-[:partOf*0..]->(AN:NodeType)-[p:property*0..]->(P)-[e:type|value*0..]->(N) WHERE elementId(A) = '<some UUID>' RETURN AN, P, N, p, e

Error:

024-04-04 19:24:32 2024-04-04 18:24:32.198+0000 ERROR Client triggered an unexpected error [Neo.DatabaseError.General.UnknownError]: Failed to transmit operation result: Response write failure, reference 2513985a-5fc2-4980-971b-d9d3362de59f.
2024-04-04 19:31:43 2024-04-04 18:31:43.687+0000 ERROR Increase in network aborts detected (more than 2 network related connection aborts over a period of 600000 ms) - This may indicate an issue with the network environment or an overload condition

This is the result of the query when run from the browser:

After several approaches to debugging this code,

        var res = await session.ExecuteReadAsync(async tx =>
        {
 1)           var cursor = await tx.RunAsync(query);
 2)           var fetched = await cursor.FetchAsync();

For only that specific code in that specific function, 2) is executed before 1).

It worked perfectly if I moved and replaced the query to another function.

I will ask JetBrains if it is something within their scope or if it is a dotNet problem.