| 2197 | recursive = DynamicField() |
| 2198 | |
| 2199 | class ToEmbedParent(Document): |
| 2200 | id = IntField(primary_key=True, default=1) |
| 2201 | recursive = DynamicField() |
| 2202 | |
| 2203 | meta = {"allow_inheritance": True} |
| 2204 | |
| 2205 | class ToEmbedChild(ToEmbedParent): |
| 2206 | pass |
nothing calls this directly
no test coverage detected