@servicenow/sdk - v4.4.1
    Preparing search index...

    Represents a descendant relationship in the hierarchy tree with metadata. Includes node identification, relationship type, and potential cyclic references.

    type DescendantRelationship = {
        composite: boolean;
        cycleTargetNodeId?: string;
        cyclicReferences?: string[];
        inverse: boolean;
        nodeId: string;
        relationships?: DescendantRelationships;
        table: string;
        via: Via;
    }
    Index

    Properties

    composite: boolean
    cycleTargetNodeId?: string
    cyclicReferences?: string[]
    inverse: boolean
    nodeId: string
    relationships?: DescendantRelationships
    table: string
    via: Via