namespace NexusReader.Application.Queries.Graph; public record GraphNodeDto(string Id, string Label, string Group, string? Type = null); public record GraphLinkDto(string Source, string Target, string RelationType, int Value = 1); public record GraphDataDto { public List Nodes { get; init; } = new(); public List Links { get; init; } = new(); }