Skip to main content
Base configuration for any graph node.

Interface Definition

interface AbstractNodeProps {
    id?: string;
    reportToClient?: boolean;
}

Properties

id (optional)

id?: string
Optional explicit node identifier. Remarks: If omitted, a stable auto-generated ID based on the class name is assigned.

reportToClient (optional)

reportToClient?: boolean
Whether this node should report its outputs to the client. If set to true, you will see the output of this node in the GraphOutputStream.