This causes a loop when it tries to lookup the parent and sees itself... need to see what aiomysql does with this. ```python class Page(BaseModel): #: Enabled state enabled = Bool() #: Parent page parent = ForwardInstance(lambda: Page) ```