Relationship Note
A special type of note that lives in the rel. note hierarchy.
Example of relationship note
rel.depends-on
Use case: Assigning names to relationships
From Named Link
Go to text ā
#status.not-implemented: this is not implemented yet, but will be. You can start using the pattern of typed relationships to add consistency in defining relationship between notes, and later on these relationships will come to life in visualizations :).
Named link
To name a link, prefix it with a relationship note using the syntax [[rel.<name-of-relationship>]]:[[some-dst-note]]
Example of named note links from note-A
---
title: note-A
---
### Relationshps
- [[rel.depends-on]]:**[[component-A]]**
- [[rel.dependency-of]]:[[component-B]]
Dissecting one of the two named relationships above
[[rel.depends-on]]:**[[component-A]]**
[[rel.depends-on]]is a note, but because it starts with therel.hierarchy, it is treated as a special type of note: Relationship Note.[[component-A]]is the destination of the note link.
With [[rel.depends-on]]:**[[component-A]]** we create a named relationship of:
graph LR
noteA --depends-on--> component-A
Backlinks