... | ... | @@ -97,11 +97,9 @@ This cheat sheet provides a concise reference for the syntax used in Mermaid flo |
|
|
|
|
|
- Basic structure:
|
|
|
|
|
|
```plaintext
|
|
|
subgraph title
|
|
|
node definitions
|
|
|
end
|
|
|
```
|
|
|
|
|
|
## Styling
|
|
|
|
... | ... | @@ -126,7 +124,6 @@ Given your example, here's the breakdown: |
|
|
|
|
|
flowchart LR A\[PostgresStorageConnector\] -- insert --> B((Database)) A -- get --> B A -- delete --> B A -- query --> B A -- get_all --> B C\[LanceDBConnector\] -- insert --> B C -- get --> B C -- delete --> B() C -- query --> B C -- get_all --> B
|
|
|
|
|
|
|
|
|
- `A[PostgresStorageConnector]` and `C[LanceDBConnector]`: Nodes with text.
|
|
|
- `B((Database))`: Circle node with text.
|
|
|
- `-- insert -->`: Arrow with text.
|
... | ... | |