Michael McAndrew
Michael McAndrew
ok, great - glad it was useful :)
Elephant in the room: you can get around this without using (fake) git submodules if you use VScode workspaces as outlined by the OP, as long as you list the...
Did some more experimentation With a model defined like so ```python class Node(SQLModel, table=True): id: Optional[int] = Field(default=None, primary_key=True) text: str parent_id: Optional[int] = Field(foreign_key="node.id") children: List["Node"] = Relationship(back_populates="parent") parent:...
Thanks @giubaru - I suspected that sa_relationship_kwargs might be part of the solution but had not got round to testing it out. I will take a look and report back.
This is working for me @giubaru - thanks!
PS work was done in this branch: https://github.com/michaelmcandrew/easy-rsa/tree/readthedocs
> Would be nice to get this merged Agree - I don't think a change to the documentation should cause the CI build to fail.
Thanks @manniL - appreciate your feedback - I'll look at a PR for the docs.
@christianwach one could argue that you do the thinking about data loss before you delete the event in CiviCRM. Or is there other data / things that I am not...
thanks for the report @valenvb - would be great to hear how you get on.