Some checks failed
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Failing after 1m13s
33 lines
590 B
Plaintext
33 lines
590 B
Plaintext
digraph {
|
|
Tag
|
|
Transaction
|
|
Account
|
|
BankConnection
|
|
Analytics
|
|
|
|
// Buckets
|
|
Budget
|
|
RecurringCost
|
|
SavingGoal
|
|
|
|
|
|
// Analytics -> {
|
|
// Budget
|
|
// RecurringCost
|
|
// SavingGoal
|
|
// Tag
|
|
// Transaction
|
|
// Account
|
|
// } [label="uses"]
|
|
|
|
BankConnection -> Transaction [label="imports into"]
|
|
BankConnection -> Account [label="references"]
|
|
|
|
Transaction -> Account [label="references"]
|
|
Transaction -> Tag [label="references"]
|
|
|
|
Budget -> Tag [label="references"]
|
|
RecurringCost -> Tag [label="references"]
|
|
SavingGoal -> Tag [label="references"]
|
|
}
|