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

#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 :).

To name a link, prefix it with a relationship note using the syntax [[rel.<name-of-relationship>]]:[[some-dst-note]]

---
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 the rel. 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