Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Themes
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

Relations

obsidian-ttrpg-communityobsidian-ttrpg-communityObsidian TTRPG CommunityObsidian TTRPG Community6k downloads

Visualise relationships between notes — for worldbuilding, fiction, TTRPG campaigns, genealogies, or any project where seeing how things connect matters.

Add to Obsidian
Relations screenshot
  • Overview
  • Scorecard
  • Updates19

Relations

See how your notes connect.

Visualise relationships between notes — for worldbuilding, fiction, TTRPG campaigns, genealogies, or any project where seeing how things connect matters. Note-driven via frontmatter, with portraits, typed line styles, true family-tree and graph-style family views, and embeddable graphs that work inside callouts and infoboxes.

image

Install · Quick start · Embedding · Family views · Legend · Settings


Why

Obsidian's built-in graph shows every link in your vault, all at once, undifferentiated. Relations shows just the connections you care about — the ones you've explicitly named — and shows them with meaning: who's allied with whom, who's married, who's a rival, who descended from whom.

Useful for:

  • Worldbuilding — factions, organisations, cities, gods, dynasties
  • Fiction writing — story casts, dramatis personae, conflict webs
  • TTRPG campaigns — NPC networks, allegiances, rivalries, family lines
  • Historical research — genealogies, political networks, succession charts
  • Anything else where you've got a cast of linked notes and want to see it

Install

Via Obsisian

The plugin can be installed via the Community.Obsidian.md site or directly from within Obsidian.

Via BRAT (recommended)

BRAT is the standard way to install community plugins that aren't (yet) in Obsidian's official catalogue. It also handles updates automatically.

  1. Install the Obsidian42 - BRAT plugin from Settings → Community plugins → Browse.
  2. Open BRAT's settings and click Add Beta plugin.
  3. Paste this repository URL: https://github.com/Obsidian-TTRPG-Community/Relations
  4. Click Add Plugin. BRAT downloads it and installs.
  5. Settings → Community plugins → enable Relations.

BRAT will notify you of updates and apply them when you click through.

Manual install

  1. Download main.js, manifest.json, and styles.css from the latest release.
  2. Drop them into <your-vault>/.obsidian/plugins/relations/ (create the folder if it doesn't exist).
  3. In Obsidian, Settings → Community plugins → enable Relations.

Quick start

Add a portrait and some relationships to any note's frontmatter:

---
npcimage: "[[merlin-portrait.png]]"
ally:
  - "[[Arthur]]"
spouse: "[[Nimue]]"
mentor:
  - "[[Arthur]]"
family:
  - "[[Morgana]]"
---

# Merlin

The court magician of Camelot…

Open the graph from the users ribbon icon in the left sidebar, or run Open Relations graph from the command palette. Click any node to open that note. Right-click for open in tab / open in pane.

The view has a Full / Active note toggle:

  • Full — every connected note in the vault.
  • Active note — the currently open note plus everyone within N hops (configurable, 1–6).

Embedding a graph in a note

Use a fenced code block with the relations language tag anywhere in a note:

```relations
size: small
depth: 1
```

[!TIP] Don't want to type the fences? Open the command palette and run Insert relations code block to drop a bare block at the cursor, or Insert relations code block (with all options) to get every option pre-filled as commented-out lines you can selectively enable.

[!NOTE] ```npc-graph works too as a legacy alias if you have older notes from before the rename.

Inside callouts and infoboxes

This is the killer feature for character sheets. Drop a relations block inside any callout — [!info], [!note], the popular ITS Theme infobox, the Fancy a Story fas-infobox, anything — and it auto-renders in compact "mini" mode: smaller portraits, no border, transparent background, tightly packed.

image
> [!infobox|right]
> # Merlin
> ![[merlin.png|cover hsmall]]
> ###### Relationships
> ```relations
> ```

The empty block uses sensible defaults — direct neighbours of the host note, mini size, depth 1. You can override with explicit size: small or size: large if you want the bigger format inside a callout.

All code-block options

Option Default Notes
size small mini (160px tall, infobox-friendly), small (320px), large (~600px)
depth size-dependent hops from the focus note. mini is forced to 1; small defaults to 1; large defaults to 3
scope local local (this note + N hops) or full (entire vault)
tree false generic top-down dagre layout for any graph — not family-specific
family-graph false family view, graph-style: generation-aligned, drawn with Cytoscape edges (marriage / informal partnership / parent→child). See below.
family-tree false family view, true tree: generation-aligned, drawn with orthogonal right-angle connectors. See below.
zoom 1.0, 1.4 for mini zoom multiplier applied after fit. 1.5 or "150%" zooms in 50%
height size default override the embed's height. Accepts px, em, rem, vh, vw, or %
center host note wikilink or path of a different note to focus on, e.g. "[[King Arthur]]"
labels (inherits setting) true/false to show or hide note names under nodes for this block, overriding the global Show node labels setting
spacing 1.0 (0.55 in mini) family views only: node spacing multiplier. Lower = tighter tree with shorter edges and larger nodes (good for infoboxes); higher = more spread out. Range 0.2–3
id none a stable identifier for this block. Required to lock the layout — see below

Family views

Relations has two layouts built for genealogy. Both are focused on the host note and align generations in horizontal rows — parents above, the focus and any partners on the middle row, children below. They differ only in how connections are drawn:

  • family-tree — a true family tree, with orthogonal right-angle connectors.
  • family-graph — the graph-style view, keeping Cytoscape's own typed edges.
image image

(These are distinct from the plain tree option, which is a generic top-down dagre layout for any graph and has no family-specific logic.)

# Arthur's note
parent:
  - "[[Uther]]"
  - "[[Igraine]]"
spouse:
  - "[[Guinevere]]"
```relations
size: large
family-tree: true
```

Swap family-tree: true for family-graph: true to get the graph-style version instead.

family-tree — a true family tree

Bloodlines are drawn as classic right-angle connectors: a vertical drop from each parent couple, a horizontal distribution bar across the siblings, and an individual drop to each child. Marriage and partnership lines between partners keep their styled appearance (a heavy double line for spouse, a dotted line for an inferred partnership). The result reads like a hand-drawn family chart.

family-graph — the graph-style view

Bloodlines stay as Cytoscape's own edges rather than right-angle connectors. This is the original family view — useful, compact, and quick to read, though less obviously "a tree":

  • Solid line between two people = declared marriage (any pair-flagged relationship like spouse)
  • Dotted line between two people = informal partnership (see below)
  • Arrowed line = parent → child (genealogy edge), pointing in the natural reading direction

Shared behaviour

Both views behave identically apart from the connector style:

  • Informal partnership is inferred automatically. When two people share a child but have no declared marriage between them, a dotted partnership line appears. You don't have to model it — just declare the child's parents. (This line also gets its own legend entry; see The legend.)
  • Declared spouses go to the LEFT of the focus, informal partners to the RIGHT — a deterministic convention so the chart reads the same way every time, regardless of the order Obsidian indexed the frontmatter.
  • Only family appears — ancestors, descendants, partners. Allies, enemies, mentors and other types are hidden so the family structure reads cleanly. Switch to the Full or Active-note views to see those.

Use scope: full to see everything

By default a family view builds a neighbourhood around the active note. To show the whole vault's family in one view, add scope: full:

```relations
size: large
family-tree: true
scope: full
```

Tightening the tree for small embeds

In a narrow space — an infobox, a callout, a mini embed — the default spacing can leave nodes looking small and far apart, because the view zooms out to fit the whole tree. mini embeds already use tighter spacing automatically, but you can tune any family embed with spacing:

```relations
size: small
family-tree: true
spacing: 0.5
```

Lower values pull nodes closer together (shorter edges, larger nodes once the view fits); higher values spread them out. The accepted range is 0.2 to 3.0.

The legend

When Show legend is enabled (Settings → Relations, on by default), non-mini graphs show a legend strip listing every relationship type present in the view, each with its colour swatch drawn in that type's line style, plus a small symbol for one-way (→) and paired (⚭) types.

In a family view, the legend also gains an informal partnership entry — a dotted grey swatch — whenever the view contains an inferred (unmarried co-parent) partnership, so that automatically-drawn line is always explained.

The legend can be turned off globally in settings, and is always hidden in mini embeds to save space.

Locking a layout in place

By default the graph lays itself out automatically each time it renders — which means a force-directed graph can shuffle slightly between refreshes, and any nodes you drag around snap back when the note re-renders. To pin everything exactly where you want it:

  1. Drag the nodes into the arrangement you want.
  2. Hover the graph and click the lock button in the top-right corner.

That's it. If the block doesn't already have an id, the plugin generates one (like rel-7f3a9c2b) and writes it into the code block for you — the id is what keys the saved positions, and having it in the block keeps the layout portable if you sync or share the note. You can rename it to something friendlier (e.g. id: arthur-court) any time.

The node positions are saved (in the plugin's own data) and restored on every future render — surviving note refreshes, switching away and back, and restarting Obsidian. While locked, the auto-layout is skipped so nothing reshuffles.

Adjusting a locked layout. You can keep dragging nodes after locking. When you've nudged things into a better arrangement, click the button again (it now shows a save icon) to capture the new positions — this updates the saved layout in place without resetting anything else, and without a disruptive re-render.

Resetting. A separate reset button (the circular arrow, shown next to the save button while locked) clears the saved positions and returns the graph to automatic layout.

If you'd rather set the id yourself up front, you still can:

```relations
size: large
id: arthur-court
```

Notes:

  • The id must be unique within your vault. Reusing the same id in two blocks makes them share one saved layout.
  • Locking is per-block, stored by id — editing other parts of the note won't disturb it.
  • If you add new related notes after locking, the new nodes appear via auto-layout while the locked ones stay put; drag them where you want and hit save to capture them.

Relationship types

Configure types in Settings → Relations. Each type has a name (= frontmatter property name), a color, and a set of behaviour flags:

Flag Effect
Sym Symmetric — declaring on either note creates the relationship both ways. Off = one-way (drawn with an arrow).
Pair Pulls paired nodes very close, with a heavy connector. Use for spouse, partner, bonded.
Tree When this type dominates a graph (≥60% of edges), auto-switches to top-down layout.
Gen Genealogy — counts as a bloodline edge in the family views (family-tree / family-graph). Typically parent.
Line solid, dashed, dotted, or double. Useful for marking "secret", "former", "rumored" relationships.

Defaults shipped:

Name Colour Sym Pair Tree Gen Line
ally #22c55e emerald ✓ solid
enemy #dc2626 crimson ✓ solid
family #eab308 gold ✓ ✓ solid
friend #0891b2 deep cyan ✓ solid
rival #fb923c tangerine ✓ dashed
spouse #d946ef fuchsia ✓ ✓ double
lover #fb7185 rose ✓ dashed
mentor #8b5cf6 violet dotted
parent #b45309 bronze ✓ ✓ solid

The palette is chosen so each line is distinguishable from every other at the typical edge widths used in the graph view, on both Obsidian dark and light themes. Greens read as positive, reds and oranges as adversarial, gold and bronze as kinship, pinks as romantic, violet for the asymmetric mentor relationship.

Palette

Rename, recolour, add, or delete freely — they're just defaults.

Portraits

The portrait property name is configurable in settings (default: npcimage). Accepted forms:

npcimage: "[[merlin.png]]"                     # vault wikilink (recommended)
npcimage: "Assets/Portraits/merlin.png"        # vault path
npcimage: "https://example.com/merlin.png"     # external URL

The plugin uses Obsidian's resource path resolution, so vault images load even if your vault isn't web-served.

Frontmatter formats accepted for relationship properties (click to expand)
ally: "[[Bob]]"                     # single
ally: ["[[Bob]]", "[[Alice]]"]      # YAML inline list
ally:                               # YAML block list
  - "[[Bob]]"
  - "[[Alice]]"
ally: "[[Bob]], [[Alice]]"          # comma-separated

Aliases ([[Bob|Bobby]]) and headings ([[Bob#background]]) are normalised to the file link.

Including notes in the graph — folder and tag scoping (click to expand)

By default, any note with at least one configured relationship property qualifies. Notes pointed at by another note's relationship are pulled in too.

For stricter scoping, set Folder scope or Required tags in settings:

  • Folder scope — only scan notes under specific folders, e.g. World/People, World/Factions.
  • Required tags — only include notes with one of these tags, e.g. character, organisation.

Useful if your vault has lots of incidental wikilinks you don't want polluting the graph.

Building from source

git clone https://github.com/Obsidian-TTRPG-Community/Relations.git
cd Relations
npm install
npm run build

Then copy main.js, manifest.json, and styles.css into <vault>/.obsidian/plugins/relations/ and enable the plugin.

Roadmap

  • Filter chips by relationship type / tag inside the graph
  • Edit relationships directly from the graph (right-click → add ally)
  • Per-relationship metadata (notes, strength) via richer frontmatter
  • Group/cluster by faction tag
  • Export graph as PNG/SVG

Acknowledgements

Built on Cytoscape.js for graph rendering, with fcose for force-directed layouts and dagre for top-down trees.

License

MIT.

HealthExcellent
ReviewSatisfactory
About
Visualize relationships between notes via frontmatter-defined connections, with portraits, typed line styles, and a focused family view. Embed graphs inside callouts and infoboxes to map casts, factions, genealogies, or TTRPG NPC networks.
VisualizationPropertiesTTRPG
Details
Current version
0.23.0
Last updated
2 weeks ago
Created
2 months ago
Updates
19 releases
Downloads
6k
Compatible with
Obsidian 1.7.2+
Platforms
Desktop, Mobile
License
MIT
Report bugRequest featureReport plugin
Sponsor
Buy Me a Coffee
Patreon
Authors
obsidian-ttrpg-communityobsidian-ttrpg-community
GitHubobsidian-ttrpg-community
Obsidian TTRPG CommunityObsidian TTRPG Communityobsidian-ttrpg-community2
obsidianttrpgtutorials.com/
GitHubobsidian-ttrpg-community
JoshPlunkett
  1. Community
  2. Plugins
  3. Visualization
  4. Relations

Related plugins

Advanced Canvas

Supercharge your canvas experience. Create presentations, flowcharts and more.

TTRPG Tools - Timeline

Timeline-Renderer für Calendarium-Frontmatter (fc-date/fc-end). 200×315 Bild, Callout-Stil, native Popover, mobilfreundlich.

Excalidraw

Visual PKM powerhouse. Create and edit Excalidraw drawings.

Meta Bind

Make your notes interactive with inline input fields, metadata displays, and buttons.

Breadcrumbs

Visualise the hierarchy of your vault using a breadcrumb trail or matrix view.

Multi Properties

Add properties to multiple notes at once. Either right-click a folder or select multiple notes and right-click the selection.

Mermaid Tools

Improved Mermaid.js experience: visual toolbar with common elements and more.

Maps

Adds a map layout to bases so you can display notes as an interactive map view.

Update modified date

Automatically update a frontmatter modified date field when the file is modified.

ExcaliBrain

An interactive, structured mind-map of your Obsidian vault.