An open API service indexing awesome lists of open source software.

https://github.com/diraneyya/github-markdown-cheatsheet


https://github.com/diraneyya/github-markdown-cheatsheet

Last synced: 4 months ago
JSON representation

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
}
```