Hi there,
I've created an entry in my db, like this:
'Element.Name': 'novalocal'
The issue is, I'm trying to update that entry but it doesn't work. So I'm guessing it's because it has a . in it.
# python test9.py
File "test9.py", line 209
db.upsert({'randomfiled': 10}, Query()."Element.Name" == 'novalocal')
^
SyntaxError: invalid syntax
Is there a way to query a key which has a . in it while updating?
Thanks