Member Junction
    Preparing search index...

    Delete options input type for controlling delete behavior. All fields are optional - defaults will be applied if not provided.

    interface DeleteQueryOptionsInput {
        IsParentEntityDelete?: boolean;
        ReplayOnly?: boolean;
        SkipEntityActions?: boolean;
        SkipEntityAIActions?: boolean;
    }
    Index

    Properties

    IsParentEntityDelete?: boolean

    When true, indicates this entity is being deleted as part of an IS-A parent chain initiated by a child entity.

    false
    
    ReplayOnly?: boolean

    When true, bypasses Validate() and actual database deletion but still invokes associated actions (AI Actions, Entity Actions, etc.). Used for replaying/simulating delete operations.

    false
    
    SkipEntityActions?: boolean

    Whether to skip regular entity actions during deletion.

    false
    
    SkipEntityAIActions?: boolean

    Whether to skip AI actions during deletion.

    false