Skip to content

Commit

Permalink
update flowchart
Browse files Browse the repository at this point in the history
  • Loading branch information
sushmangupta committed Dec 18, 2023
1 parent bbd99a2 commit 5e057c9
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion concepts/commerce/content/shopping-experiences-cms.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,15 @@ Whereas the structure of a CMS page remains somewhat static, its content can be

The following diagram illustrates how that works using the example of a category:

![Flow of resolving CMS page content](../../../assets/concept-commerce-shoppingExperiences-resolvingCmsPage.png).
```mermaid
flowchart TD
A[Load category A] --> B[Load CMS layout associated with category A]
B --> C[Build resolver context containing context information of category A]
C --> D[For every element in the CMS layout]
D --> E[Element resolver - Assemble criteria to fetch data based on resolver context]
E --> F[Fetch dynamic configuration and use it to override existing slot configuration]
F --> G[Respond with dynamically hyderated CMS page]
```

Let's go through the steps one by one.

Expand Down

0 comments on commit 5e057c9

Please sign in to comment.