Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Zenuml graph macro
uuid26671782-781c-4b57-9b15-4c92a2122222
customContentId376471557
updatedAt2021-07-22T1625T05:3138:47Z46Z

Mermaid

The following diagrams show some features of the mermaid component. The document of mermaid can be found here.

...

Zenuml sequence macro
uuid575626b8-9529-4ecb-87fc-de275204f9f6
customContentId376340492
updatedAt2021-0607-12T0525T05:0238:43Z57Z
@Lambda OrderController
<<BFF>> OrderService
group BusinessService {
  PurchaseService
  InvoiceService
}
//`POST /orders`
OrderController.create(payload) {
  OrderService.create(payload) {
    order = new Order(payload)
    par {
      PurchaseService.createPO(order)
      InvoiceService.createInvoice(order)      
    }
  }
}

...