guys, I'm kind of new to dynamo DB. I'm working on demo project in which I'm using dynamo as my DB. and I'm using vogel as it's data mapper.
Now I was going through the vogel documentation and there it was written if I had to delete I needed to provide the hash key and if I have specified a range key then that is to be provided also.
for example, if I have a hash key say id then when I'm deleting then I need to provide that id and if I have a range key say user id then that is also needed while deleting the item. Delete Documentation in Vogel => Deleting in Vogel
Now my question if I need to delete an item on the basis of something which is neither a hash key nor a range key e.g we have a requirement that we need to delete all the posts of a user whose account status is deleted where the status attribute is not a hash key nor a range key How will I achieve this Thanks