doing table joins
is there a best practice way to do joins? I kindof wish I could do this:
but that fails when I run it
3 Replies
I guess I just needed this:
I guess I'm wondering if there is room for using typescript to prevent objects with un awaited promises
There's a typescript eslint rule that warns about unawaited promises:
https://typescript-eslint.io/rules/no-floating-promises/
no-floating-promises | typescript-eslint
Require Promise-like statements to be handled appropriately.
forgot about that one, thanks!