Matt Mueller
Matt Mueller
+1 for things like using the history API. I would argue you that most DOM nodes should be created in a `before` or `beforeEach` and appended to the page. IMO,...
Hey @wymli, thanks for trying Bud! > 1. how to change id:int to name:string? This will improve soon with support for custom routing. I believe this is similar to: https://github.com/livebud/bud/issues/170....
Hey @aadog, can you share what you're seeing in your terminal?
Hey @aadog thanks for the screenshot. Would you be up for helping me debug this? https://github.com/livebud/bud/tree/main/contributing This one would be challenging for me since I don't have Windows 11 and...
Ah really? Maybe I'm just remembering in-between blocks then. Yep, good questions: **Does this rule apply to other kinds of blocks as well (enums, generators, datasources)?** Yes, all blocks. Similar...
Is this something that's supported natively by the MongoDB driver? If so, you could probably use the [raw query support](https://www.prisma.io/docs/concepts/components/prisma-client/raw-database-access#runcommandraw) we recently released. Not ideal, but might be a decent...
This is a tricky one because this will work 99.999% of the time for everyone, but will occasionally crash at runtime in a very surprising way. A warning is fine...
Hey @friebetill, I can understand the use case. This is unfortunately a very complex subject and our current implementation is best-effort and depends on a lot of factors. Do you...
Hey @Simonwep for now the workaround is to do this in your app. Something like _(untested)_: ```ts const items = await prisma.item.findMany({ include: { i18: true }, }) const orderedItems...
Hmm, this is a tricky one because `undefined` so far has consistently meant exclude from the results. I agree with @flybayer though that `id = undefined` is when you need...