Quick Start Guide
Get up and running with Nexus Properties in 5 minutes! This guide will walk you through creating your first relationship network.
Step 1: Open the Relationship Graph
There are three ways to open the Relationship Graph view:
- Ribbon Icon: Click the fork icon in the left sidebar (if enabled in settings)
- Command Palette: Press
Ctrl/Cmd+Pand search for "Show Relationship Graph" - Command: Use the command "Nexus Properties: Show Relationship Graph"
The graph view will open in the left sidebar by default.
Step 2: Create Your First Parent-Child Relationship
Let's create a simple hierarchy to understand how Nexus Properties works.
Create a Parent Note
- Create a new note called
Project Overview.md - Add frontmatter at the top of the file:
---
Child:
- "[[Task 1]]"
- "[[Task 2]]"
---
Create Child Notes
Create two new notes: Task 1.md and Task 2.md.
You don't need to add anything to these notes! Nexus Properties will automatically update them.
See the Magic ✨
Open Task 1.md or Task 2.md and check their frontmatter. You'll see that Nexus Properties automatically added:
---
Parent: "[[Project Overview]]"
---
That's bidirectional sync in action! When you set a child relationship in one file, the parent relationship is automatically created in the other file.
Step 3: View Your Hierarchy in the Graph
- Open
Project Overview.md - Look at the Relationship Graph view
- You should see three nodes:
- Project Overview (the root)
- Task 1 (connected as a child)
- Task 2 (connected as a child)
Try Different View Modes
Use the dropdown in the graph header to try different views:
- Hierarchical - Shows the parent-child tree (current view)
- Related - Shows direct related connections
- All Related - Shows all connected nodes in the constellation
- Start from Current - Focuses on the current file instead of the root
Step 4: Add Related Relationships
Let's connect Task 1 and Task 2 as related items.
- Open
Task 1.md - Add to the frontmatter:
---
Parent: "[[Project Overview]]"
Related:
- "[[Task 2]]"
---
- Open
Task 2.mdand check its frontmatter:
---
Parent: "[[Project Overview]]"
Related:
- "[[Task 1]]"
---
Both tasks are now marked as related to each other! This is another example of bidirectional sync.
Step 5: Explore the Graph
Now that you have a basic network, let's explore the graph features:
Zoom Mode
- Click any node in the graph
- A preview panel appears at the bottom showing the file's content
- Click the node again to exit zoom mode
- Use the eye icons to toggle frontmatter and content visibility
Context Menu
- Right-click any node in the graph
- You'll see options to:
- Open the file
- Open in new tab
- Add Parent/Child/Related relationships
- Edit the node's frontmatter
- View node preview
- Copy node path
Tooltips
- Hover over any node for 1 second
- A tooltip appears showing the node's frontmatter properties
- You can click links inside the tooltip to navigate
Step 6: Create Nodes Quickly
Nexus Properties provides commands to quickly create related nodes:
- Open
Project Overview.md - Open command palette (
Ctrl/Cmd+P) - Search for "Create Child Node"
- A new child note will be created with:
- All properties inherited from the parent
- Automatic bidirectional relationship
- A unique Zettel ID
Try the same with "Create Parent Node" and "Create Related Node"!
Step 7: Add Visual Categories with Color Rules
Let's make the graph more visual by adding color rules:
- Open Settings → Nexus Properties → Node colors
- Click "Add Rule"
- Add an expression like:
status === 'complete' - Choose a green color
- Click "Add Rule" again
- Add:
status === 'pending' - Choose a yellow color
Now add a status property to your notes:
---
Parent: "[[Project Overview]]"
status: complete
---
The nodes will change color based on their status!
Step 8: Filter the Graph
You can filter the graph to show only specific nodes:
- Open command palette (
Ctrl/Cmd+P) - Search for "Toggle Graph Filter"
- Enter a filter expression:
status === 'pending' - Only nodes with
status: pendingwill be shown
Next Steps
Now that you understand the basics, explore more advanced features:
- Learn about all Graph View modes
- Master Color Rules
- Understand Filtering
- Explore Node Layouts
- Configure all Settings
Common Workflows
Project Management
---
# Project.md
Child:
- "[[Task 1]]"
- "[[Task 2]]"
- "[[Task 3]]"
status: active
priority: high
---
Knowledge Hierarchy
---
# Concept.md
Child:
- "[[Sub-concept A]]"
- "[[Sub-concept B]]"
Related:
- "[[Related Concept]]"
type: concept
---
Research Papers
---
# Main Paper.md
Related:
- "[[Supporting Study 1]]"
- "[[Supporting Study 2]]"
- "[[Contradicting Study]]"
tags:
- research
- published
---
Tips for Success
- Use consistent property names - Stick with the default
Parent,Child,Relatedor customize them in settings - Let the plugin do the work - Only set relationships in one direction, the plugin handles the rest
- Use wiki links - Always use
[[note name]]format for relationships - Enable auto-link siblings - Makes sense for most hierarchies
- Configure directory scanning - Focus on specific folders if you have a large vault
Happy networking! 🚀