GraphNodeDefinition

The `GraphNodeDefinition` entity.

Definition

TypeScript
interface GraphNodeDefinition {
  id: string;
  graphDefinitionId: string;
  schemaId: string;
  description: string | null;
  createdAt: string;
  updatedAt: string;
}

Fields

FieldTypeNotes
idstringreadonly required
graphDefinitionIdstringrequired — Graph definition this node type belongs to.
schemaIdstringrequired — Schema describing the shape of node properties for this type.
descriptionstring | nullrequired — Human-readable description of what this node type represents.
createdAtstringreadonly required — ISO-8601 timestamp of creation.
updatedAtstringreadonly required — ISO-8601 timestamp of the last update.