digraph.dot 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. digraph yamily {
  2. {
  3. rank=same
  4. "erika-mustermann" [label="Erika Mustermann\n*1957-08-12" shape=box]
  5. "thomas-mustermann" [label="thomas-mustermann" shape=box]
  6. "relation-erika-mustermann-thomas-mustermann" [shape=point width=0]
  7. "erika-mustermann" -> "relation-erika-mustermann-thomas-mustermann" [arrowhead=none constraint=False]
  8. "thomas-mustermann" -> "relation-erika-mustermann-thomas-mustermann" [arrowhead=none constraint=False]
  9. }
  10. {
  11. rank=same
  12. "alice-mother" [label="Mum Test" shape=box]
  13. "alice-father" [label="alice-father" shape=box]
  14. "relation-alice-father-alice-mother" [shape=point width=0]
  15. "alice-father" -> "relation-alice-father-alice-mother" [arrowhead=none constraint=False]
  16. "alice-mother" -> "relation-alice-father-alice-mother" [arrowhead=none constraint=False]
  17. }
  18. {
  19. rank=same
  20. "alice-grandmother" [label="Grandma Test" shape=box]
  21. }
  22. {
  23. rank=same
  24. alice [label="Alice Test" shape=box]
  25. }
  26. {
  27. rank=same
  28. "max-mustermann" [label="Max Mustermann\n*1976-02-01" shape=box]
  29. }
  30. "alice-grandmother" -> "alice-father"
  31. "relation-alice-father-alice-mother" -> alice
  32. "relation-erika-mustermann-thomas-mustermann" -> "max-mustermann"
  33. }