You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Related to the same update use case, partial updates like this does not work, because the lens does not have access to the actual value. Can the generated expression detect that and add a update expression with + :1 ?
let user = await db.update(UserModel.key({ id: userId }), (user)=>{
user.followeesNbr =+1
})
Is there a way to do batch write with updates, puts and deletes ?
Not currently, no. Right now we support puts + deletes via batchWrite, but not (yet) updates.
Related to the same update use case, partial updates like this does not work, because the lens does not have access to the actual value. Can the generated expression detect that and add a update expression with + :1 ?
This isn't currently supported, but should be possible. Dynamo supports an ADD operation in update expressions. So it'd be a matter of teaching the proxy object we use for updates how to generate ADD statements.
Of the top of my head, I'm not sure if JS proxies can differentiate between foo.a = 1 and foo.a += 1, so it might have to look something more like foo.a.add(1).
Re: batch updates, it'd be nice to preserve the same syntax as the singular update method, so maybe something like this:
I'm out of office for the next month, so will be slow to respond, but either of these we'd be happy to accept a PR for. Otherwise, I can probably get to this when I'm back.
Is there a way to do batch write with updates, puts and deletes ?
I think I red on the doc that conditional updates are not yet possible to ?!
Right now I am using the dynamodb client to make something like this work :
Thank you so much again for this library, Beyonce rocks !
The text was updated successfully, but these errors were encountered: