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.
11 lines
336 B
C#
11 lines
336 B
C#
namespace Noz.PowerShell;
|
|
|
|
public sealed class NozGraphEdge
|
|
{
|
|
public string Source { get; init; } = "";
|
|
public string Target { get; init; } = "";
|
|
public string SourceTitle { get; init; } = "";
|
|
public string TargetTitle { get; init; } = "";
|
|
|
|
public override string ToString() => $"{Source} → {Target}";
|
|
}
|