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.
15 lines
528 B
C#
15 lines
528 B
C#
namespace Noz.PowerShell;
|
|
|
|
public sealed class NozGardenStats
|
|
{
|
|
public int TotalNotes { get; init; }
|
|
public int SeedCount { get; init; }
|
|
public int BuddingCount { get; init; }
|
|
public int EvergreenCount { get; init; }
|
|
public int TopicCount { get; init; }
|
|
public int LinkCount { get; init; }
|
|
public int OrphanCount { get; init; }
|
|
|
|
public Dictionary<string, int> NotesByTopic { get; init; } = new();
|
|
public Dictionary<string, int> NotesByLang { get; init; } = new();
|
|
}
|