File: deeply_nested.py

package info (click to toggle)
python-odmantic 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,488 kB
  • sloc: python: 8,646; sh: 110; javascript: 45; makefile: 34; xml: 13
file content (16 lines) | stat: -rw-r--r-- 294 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from odmantic.model import Model
from odmantic.reference import Reference


class NestedLevel3(Model):
    field: int = 3


class NestedLevel2(Model):
    field: int = 2
    next_: NestedLevel3 = Reference()


class NestedLevel1(Model):
    field: int = 1
    next_: NestedLevel2 = Reference()