GraphNode

The `GraphNode` entity.

Definition

TypeScript
interface GraphNode {
  id: string;
  graphId: string;
  nodeDefinitionId: string;
  properties: unknown;
  label: string;
  createdAt: string;
}

Fields

FieldTypeNotes
idstringreadonly required
graphIdstringrequired — Graph instance this node belongs to.
nodeDefinitionIdstringrequired — Node type this node is an instance of.
propertiesunknownrequired — Node property values, matching the node-definition schema.
labelstringrequired — Human-readable label used when referencing the node.
createdAtstringreadonly required — ISO-8601 timestamp of creation.