Martin Adámek
Martin Adámek
> We are missing syntax highlighting for code examples This is not 100% correct, we are missing just a few of the languages like C or Ruby. connected to the...
> 4.We have some comments left in the spec I believe this is on purpose, to let the writer know that the number needs to be in sync with some...
> Color of PUT requests between sidebar and main body is misaligned This is resolved via #1344
> 4.We have some comments left in the spec This is resolved via #1371 > Typo in Authentication section This as well
once #1371 is merged, only 2. and 3. are valid from this issue
I still haven't had the time to create an isolated repro, but the type stripping feature broke things for us, executing compiled code via `tsc` no longer works on node...
> Enabling the new erasableSyntaxOnly (introduced in 5.8) in tsconfig may help you pinpoint the cause. My issue is running a compiled code (via `tsc`). It's already JS, I don't...
I am planning something similar, joining things only for to-one relations, and using separate selects for to-many relations. This way the cartesian products won't explode. Such a strategy would be...
I see, I guess we could just batch those select calls, just like we do it with the insert/update queries from flush. We can do that easily now.
I did a quick test and it looks quite fast on my end, a query with `where in 10000 ids` takes around 20ms locally with postgres. I guess things can...