Probably a silly question, but if in a collection I have documents which include attributes defined with spaces, example:
{
"attribute with spaces" : "blabla",
...
}
How can I query for finding it? I tried
for document in documents
filter document."attribute with spaces" == "blabla"
But of course I get a syntax error.