Tatsuya Yamamoto
Tatsuya Yamamoto
The interface of `transaction.write()` is so cool! `BatchWriteItem` feature can follow this interface. https://electrodb.dev/en/mutations/transact-write/#performing-write-transactions ```ts await yourService.batch .write(({ entity1, entity2 }) => [ entity1 .put({ prop1: "value1", prop2: "value2" })...
I get same error when I updated and restarted the Mac OS with finch vm running. Because I had installed with brew, it fixed by uninstalling and re-installing finch with...
I've created a minimal representation code. https://github.com/yamatatsu/represent-jest-dynalite-database-is-not-open I guess the condition of this error is below: - many commands to db are queued to node event-loop - timeout the test...
Hi mobsense. I mean to get multiple entities not items. Example: ```ts await table.find(["User", "Order"], { userId: "user_anyuuid1" }); // return: { // user: [ // { // pk: "user_anyuuid1",...
@peterwoodworth I'll try to create the example. @entest-hai CDK (and CloudFormation) does not have the feature of `create-keys-and-certificate`. If you wanna create certs with cdk, you can create the cert...
In my case, I was able to solve this issue by either adding `"type": "module"` to the root package.json file or by creating a new package.json with `{ "type": "module"...