Hello!
I hope you can help me to create an activity diagram, which looks like this
The best solution I found is this:
@startuml
title Conditional - Activity Diagram
start
repeat :Check for config;
if (Config Available?) then (true)
else (no)
:New Config?;
endif
:Load;
repeat while (Successful?) is (No) not (Yes)
stop
@enduml
and looks like this:
But this is not correct. The arrow Successful -no-> has to go to "new Config" and not "Start".
What is the correct syntax to create the activity diagram I want to have? ;)
Thanks for your help!
Best regards,
J.B