Relationship: {
description?: string | string[];
from: string;
polarity?: "positive" | "negative" | "neutral" | "uncertain";
strength?: number;
to: string;
type:
| "refines"
| "realises"
| "implements"
| "depends_on"
| "constrained_by"
| "affects"
| "supersedes"
| "must_preserve"
| "performs"
| "part_of"
| "precedes"
| "must_follow"
| "blocks"
| "routes_to"
| "governed_by"
| "modifies"
| "triggered_by"
| "applies_to"
| "produces"
| "consumes"
| "transforms_into"
| "selects"
| "requires"
| "disables"
| "influence";
[key: string]: unknown;
}
Type Declaration
[key: string]: unknown
Optionaldescription?: string | string[]
from: string
Optionalpolarity?: "positive" | "negative" | "neutral" | "uncertain"
Optionalstrength?: number
to: string
type:
| "refines"
| "realises"
| "implements"
| "depends_on"
| "constrained_by"
| "affects"
| "supersedes"
| "must_preserve"
| "performs"
| "part_of"
| "precedes"
| "must_follow"
| "blocks"
| "routes_to"
| "governed_by"
| "modifies"
| "triggered_by"
| "applies_to"
| "produces"
| "consumes"
| "transforms_into"
| "selects"
| "requires"
| "disables"
| "influence"
A typed, directed connection between two nodes, with from/to IDs and a relationship type.