Can we do conditional get an item using get() as below?
let conditonParams = {isDeleted: false};
Account.get('test@example.com', {ConsistentRead: true, conditons : conditonParams}, function (err, acc) {
console.log('got account', acc.get('email'));
})
I know we can do conditional fetch using query() and scan()
Thanks in advance