Closed harlowk closed 4 months ago
Yo! So there isn't a consistentRead
option but you can use
entity.get({...})
.go({
params: {
ConsistentRead: true
}
});
The params
option is a sort of "escape hatch" to put properties directly onto the ddb parameters sent off 💪
Oh, I'm dumb, I see now this is a request to add this option, not that it "doesn't work". I can add it 👍
Oh, I'm dumb, I see now this is a request to add this option, not that it "doesn't work". I can add it 👍
Ha no, it was more the latter - forgot the params object took those untyped params!
Request to add
consistentRead
as an input option togo
for GET requests.Expected:
I'll open an MR for this if I can find time.