api_output.dot 508 B

1234567891011121314
  1. digraph {
  2. Root [shape="point"]
  3. UserRoot [shape="point"]
  4. FirstOutput [shape="point",color="blue"]
  5. NextOutput [shape="point"]
  6. Value [label="__returned__"]
  7. Root -> UserRoot [label="username"]
  8. UserRoot -> FirstOutput [label="'output'",color="blue",style="dashed"]
  9. FirstOutput -> NextOutput [label="'next'",color="blue",style="dashed"]
  10. UserRoot -> NextOutput [label="'output'",color="green",penwidth=4]
  11. FirstOutput -> Value [label="'value'",color="blue",style="dashed"]
  12. }