AddGraphNodeBody

Request body for a GraphNode operation.

Definition

TypeScript
interface AddGraphNodeBody {
  graphId: string;
  nodeDefinitionId: string;
  label: string;
  properties?: unknown;
}

Fields

FieldTypeNotes
graphIdstringrequired — Graph instance to add the node to.
nodeDefinitionIdstringrequired — Node type the new node is an instance of.
labelstringrequired — Human-readable label for the node.
propertiesunknownoptional — Node property values, matching the node-definition schema.