Skip to main content

rmQueryById

Callable

  • rmQueryById(directory: string): (id: string, version?: string, persistFiles?: boolean) => Promise<void>

  • Delete a query by it's id.

    Optionally specify a version to delete a specific version of the query.

    @example
    import utils from '@eventcatalog/utils';

    const { rmQueryById } = utils('/path/to/eventcatalog');

    // deletes the latest InventoryAdjusted query
    await rmQueryById('GetOrder');

    // deletes a specific version of the GetOrder query
    await rmQueryById('GetOrder', '0.0.1');