Skip to content
Please update to the latest release 0.77.2 to address Multiple CVEs.
Server.Utils.RemoveTimeline

Server.Utils.RemoveTimeline

Deletes a child timeline from a specified super-timeline in a notebook.


name: Server.Utils.RemoveTimeline
description: |
   Deletes a child timeline from a specified super-timeline in a
   notebook.

type: SERVER

parameters:
  - name: NotebookId
  - name: Timeline
    description: SuperTimeline name
  - name: ChildName
    description: Name of child timeline

sources:
  - query: |
      SELECT if(condition=ChildName AND Timeline AND NotebookId,
                then=timeline_delete(
                     timeline=Timeline,
                     notebook_id=NotebookId,
                     name=ChildName)) AS Removed
      FROM scope()