1234567891011121314151617 |
- digraph commerce {
- materio_checkout_flow
- materio_order_type
- materio_order_item_type
- materio_product_licence_variatio[label=<materio_product_licence_variatio<br/><b>no subscription</b>>]
- materio_product_variation_type[label=<materio_product_variation_type<br/><b>recurring</b>>]
-
- materio_product_type
- materio_product_license_type
- materio_order_type -> materio_checkout_flow
- materio_order_item_type -> materio_order_type
- materio_product_licence_variatio -> materio_order_item_type
- materio_product_variation_type -> materio_order_item_type
- materio_product_type -> materio_product_variation_type
- materio_product_license_type -> materio_product_licence_variatio
- }
|