Smarter way to update while creating
In prisma, I can do something like this:
is there a smarter way to do this in drizzle? currently im doing this:
this is extremely slow to do the promise.all here. it would be much more efficient to just do this upon creation of the
is there a smarter way to do this in drizzle? currently im doing this:
this is extremely slow to do the promise.all here. it would be much more efficient to just do this upon creation of the
blogs if i could just do a create many and name one trip to the db. at the very least i'd like to be able to do 2 trips (one for the creation of all the new blogs and one for the user updates)