I have a subobject in a mongo database with fields that contain spaces, something like:
{name: "John Doe", subdata: {"Field 1": "Something", "Field 2": "Something else"}}
From what I've been able to find, mongo allows the fields Field 1 and Field 2, but I haven't been able to find any indication of how to structure a query to look for subdata.Field 1. Is there a way I could search for Field 1 and Field 2 in my example, or should I restructure my data to get rid of white spaces?
Field 1was rather"Field 1"etc, it is valid and query'able. – Christian Witts May 25 '12 at 14:22