Versions Compared

Key

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

...

Get the user's phone number from the customer data and order phone number from the order data.

Show Phone Number - Workflow

The workflow is basically an order flow where the FetchOrder query is fetched, then the phone number is read from Dynamo DB and then it is returned to the Admin Tool to be displayed on screen.

...

Expand
titlehttps://sequencediagram.org/ - Show Phone Number
Code Block
title Show Phone Number

participant Admin Tool
participant Graphql
participant DB

Admin Tool->Graphql: FetchOrder
Graphql->DB: Read phone number
DB->Graphql: Return phone number 
Admin Tool<-Graphql:Display phone number

For more references:

...