https://github.com/diraneyya/github-markdown-cheatsheet
https://github.com/diraneyya/github-markdown-cheatsheet
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/diraneyya/github-markdown-cheatsheet
- Owner: diraneyya
- Created: 2022-12-01T13:27:07.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-01T13:59:29.000Z (over 3 years ago)
- Last Synced: 2025-08-28T08:32:03.657Z (9 months ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## An ERD diagram example
```mermaid
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
```
```mermaid
erDiagram
CUSTOMER ||--o{ ORDER : places
CUSTOMER {
string name
string custNumber
string sector
}
ORDER ||--|{ LINE-ITEM : contains
ORDER {
int orderNumber
string deliveryAddress
}
LINE-ITEM {
string productCode
int quantity
float pricePerUnit
}
```