123456789101112131415161718192021222324252627282930313233 |
- digraph yamily {
- {
- rank=same
- "erika-mustermann" [label="Erika Mustermann\n*1957-08-12" shape=box]
- "thomas-mustermann" [label="thomas-mustermann" shape=box]
- "relation-erika-mustermann-thomas-mustermann" [shape=point width=0]
- "erika-mustermann" -> "relation-erika-mustermann-thomas-mustermann" [arrowhead=none constraint=False]
- "thomas-mustermann" -> "relation-erika-mustermann-thomas-mustermann" [arrowhead=none constraint=False]
- }
- {
- rank=same
- "alice-mother" [label="Mum Test" shape=box]
- "alice-father" [label="alice-father" shape=box]
- "relation-alice-father-alice-mother" [shape=point width=0]
- "alice-mother" -> "relation-alice-father-alice-mother" [arrowhead=none constraint=False]
- "alice-father" -> "relation-alice-father-alice-mother" [arrowhead=none constraint=False]
- }
- {
- rank=same
- "alice-grandmother" [label="Grandma Test" shape=box]
- }
- {
- rank=same
- alice [label="Alice Test" shape=box]
- }
- {
- rank=same
- "max-mustermann" [label="Max Mustermann\n*1976-02-01" shape=box]
- }
- "alice-grandmother" -> "alice-father"
- "relation-alice-father-alice-mother" -> alice
- "relation-erika-mustermann-thomas-mustermann" -> "max-mustermann"
- }
|