Get-NozGraph, Find-NozNote, Measure-NozGarden, Set-NozNoteStatus, Get-NozOrphans — graph edges, Meilisearch search, garden stats, frontmatter status patch, orphan detection from inbound link analysis.
5 lines
236 B
C#
5 lines
236 B
C#
namespace NozCli.Core.Models;
|
|
|
|
public record GraphNode(string Id, string Title, string Topic, string Status);
|
|
public record GraphEdge(string Source, string Target);
|
|
public record GraphData(List<GraphNode> Nodes, List<GraphEdge> Edges);
|