Dovetail.Example.Business

ProductDetailPipeline

1 input · 6 segments · → ProductDetail · MaxConcurrency 2

%%{init: {"theme":"neutral"}}%%
flowchart TD
    in_0(["input: Sku"])
    seg_catalog["catalog: ProductInfo"]
    seg_pricing["pricing: PricingInfo"]
    seg_inventory["inventory: InventoryStatus"]
    seg_reviews["reviews: ReviewSummary"]
    seg_recommendations["recommendations: IReadOnlyList#lt;RecommendedProduct#gt;"]
    seg_Assemble("Assemble: ProductDetail")
    in_0 --> seg_catalog
    seg_catalog --> seg_pricing
    in_0 --> seg_inventory
    in_0 --> seg_reviews
    seg_catalog --> seg_recommendations
    seg_catalog --> seg_Assemble
    seg_pricing --> seg_Assemble
    seg_inventory --> seg_Assemble
    seg_reviews --> seg_Assemble
    seg_recommendations --> seg_Assemble