I'm trying to find all object which have no parent (i.e. which were created with parent=None).
Using M.all().filter("parent = ", None).fetch(100)
doesn't bring any results, even though some objects certainly do have no parent.
What am I doing wrong?