| 66 | # This is the historical behavior so we must make sure we don't modify it (unless consciously done of course) |
| 67 | |
| 68 | class MyOIDSDoc(Document): |
| 69 | oids = ListField(ObjectIdField()) |
| 70 | |
| 71 | # constructor goes through to_python so casting occurs |
| 72 | doc = MyOIDSDoc(oids=[str(ObjectId())]) |
searching dependent graphs…