Initial commit

This commit is contained in:
2025-07-11 13:52:19 +00:00
commit e0c489f625
362 changed files with 27286 additions and 0 deletions
@@ -0,0 +1,11 @@
from neontology import BaseRelationship
class PlannedLessonHasNextPlannedLesson(BaseRelationship):
__relationshiptype__: ClassVar[str] = 'PLANNED_LESSON_HAS_NEXT_PLANNED_LESSON'
source: PlannedLessonNode
target: PlannedLessonNode
class PlannedLessonHasPreviousPlannedLesson(BaseRelationship):
__relationshiptype__: ClassVar[str] = 'PLANNED_LESSON_HAS_PREVIOUS_PLANNED_LESSON'
source: PlannedLessonNode
target: PlannedLessonNode