Hi walter, I have been looking for a better design of diagram using gojs but so far i have achieved this graph given below
i have given data to mermaid js library and i found graph shape -
should i get design like this graph in gojs.
graph TD
start_node → create_payment_through_template
start_node → create_invoice
start_node → create_withholding_invoice
start_node → create_invoice_from_spreadsheet
start_node → create_credit_memo
start_node → create_prepayment_invoice
approve_invoice → create_accounting_for_invoice
approve_invoice → create_payment
approve_invoice → create_payment_through_template
cancel_invoice → on_hold_invoice
cancel_invoice → withdraw_invoice
create_accounting_for_invoice → create_payment
create_accounting_for_invoice → create_payment_through_template
create_accounting_for_invoice → delegate_invoice
create_accounting_for_invoice → suspend_invoice
create_accounting_for_invoice → unpaid_invoice
create_credit_memo → approve_invoice
create_credit_memo → create_accounting_for_invoice
create_invoice → approve_invoice
create_invoice → cancel_invoice
create_invoice → create_accounting_for_invoice
create_invoice → create_payment
create_invoice → create_payment_through_template
create_invoice → delegate_invoice
create_invoice → force_approve_invoice
create_invoice → on_hold_invoice
create_invoice → reassign_invoice
create_invoice → reject_invoice
create_invoice → request_information_for_invoice
create_invoice → suspend_invoice
create_invoice → withdraw_invoice
create_invoice_from_spreadsheet → force_approve_invoice
create_invoice_from_spreadsheet → on_hold_invoice
create_payment → cleared_payments
create_prepayment_invoice → create_accounting_for_invoice
delegate_invoice → reassign_invoice
delegate_invoice → withdraw_invoice
force_approve_invoice → create_accounting_for_invoice
force_approve_invoice → create_payment
force_approve_invoice → create_payment_through_template
force_approve_invoice → on_hold_invoice
on_hold_invoice → release_invoice
release_invoice → create_accounting_for_invoice
release_invoice → create_payment_through_template
withdraw_invoice → create_accounting_for_invoice
create_payment_through_template → end_node
create_invoice → end_node
approve_invoice → end_node
on_hold_invoice → end_node
create_withholding_invoice → end_node
create_payment → end_node
create_accounting_for_invoice → end_node
create_invoice_from_spreadsheet → end_node
release_invoice → end_node
cleared_payments → end_node
request_information_for_invoice → end_node
suspend_invoice → end_node
reject_invoice → end_node
withdraw_invoice → end_node
reassign_invoice → end_node
force_approve_invoice → end_node
cancel_invoice → end_node
unpaid_invoice → end_node