Lauri Svan
Lauri Svan
I am not sure if this helps reproducing the issue, but I am hitting these with a connection that is run through WireGuard. What I generally have seen with the...
@nicoabie Unfortunately not yet - we've been too busy with other things. We kicked the can forward by compiling node.js with pointer compression. That reduced our memory load enough that...
This morning I had a moment to think about this, yet still nothing concrete yet :( I was wondering - perhaps async generators would work here. The problems raised at...
I must say I'm not expert on async generators either - I don't know what the underlying mechanism is, e.g. does it create context objects in the same way as...
If I interpreted the GraphQL Spec correctly, undefined is at least allowed to be treated as undefined (no entry is added to the coerced unordered map): > If no value...
A pull request would be much appreciated, but since the advent of Node 18 and its built-in fetch support, I am planning to retire this library. Is there a use...
@koskimas thanks also from my side - Objection.js has helped us a long way forward. I hope the libary finds a maintainer, but luckily i has not needed that much...
Note: This might well be specific to the fact TypeScript 4.7 being a release candidate and still having some bugs, but I wonder if somebody more versed in TypeScript complex...
My PR #2278 seems to solve the issue.
@koskimas Hmm you are absolutely right. How about simply ``` interface ReturningMethod { ( this: QB, column: string | string[] ): QB extends NumberQueryBuilder ? ArrayQueryBuilder : QB } ```...