digraph.dot 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. digraph yamily {
  2. subgraph "cluster_erika-mustermann" {
  3. rank=same
  4. "erika-mustermann" [label="Erika Mustermann\n*1957-08-12" shape=box]
  5. "relation-erika-mustermann-thomas-mustermann" [shape=point width=0]
  6. "erika-mustermann" -> "relation-erika-mustermann-thomas-mustermann" [arrowhead=none constraint=False]
  7. "thomas-mustermann" -> "relation-erika-mustermann-thomas-mustermann" [arrowhead=none constraint=False]
  8. "thomas-mustermann" [label="thomas-mustermann" shape=box]
  9. }
  10. subgraph "cluster_alice-mother" {
  11. rank=same
  12. "alice-mother" [label="Mum Test" shape=box]
  13. "relation-alice-father-alice-mother" [shape=point width=0]
  14. "alice-father" -> "relation-alice-father-alice-mother" [arrowhead=none constraint=False]
  15. "alice-mother" -> "relation-alice-father-alice-mother" [arrowhead=none constraint=False]
  16. "alice-father" [label="alice-father" shape=box]
  17. }
  18. subgraph "cluster_alice-grandmother" {
  19. rank=same
  20. "alice-grandmother" [label="Grandma Test" shape=box]
  21. }
  22. subgraph cluster_alice {
  23. rank=same
  24. alice [label="Alice Test" shape=box]
  25. }
  26. subgraph "cluster_max-mustermann" {
  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. }