Dovetail.Example.Business

CartSummaryPipeline

2 inputs · 7 segments · → CartSummary

%%{init: {"theme":"neutral"}}%%
flowchart TD
    in_0(["input1: UserId"])
    in_1(["input2: CartId"])
    seg_cart["cart: IReadOnlyList#lt;CartLineItem#gt;"]
    seg_pricing["pricing: CartPricing"]
    seg_promotions["promotions: AppliedPromotions"]
    seg_shipping["shipping: ShippingEstimate"]
    seg_account["account: CustomerAccount"]
    seg_loyalty["loyalty: LoyaltyStatus"]
    seg_Assemble("Assemble: CartSummary")
    in_0 --> seg_cart
    in_1 --> seg_cart
    seg_cart --> seg_pricing
    in_0 --> seg_promotions
    seg_cart --> seg_promotions
    in_0 --> seg_shipping
    seg_cart --> seg_shipping
    in_0 --> seg_account
    in_0 --> seg_loyalty
    seg_cart --> seg_Assemble
    seg_pricing --> seg_Assemble
    seg_promotions --> seg_Assemble
    seg_shipping --> seg_Assemble
    seg_account --> seg_Assemble
    seg_loyalty --> seg_Assemble