Skip to main content

versionQuery

Callable

  • versionQuery(directory: string): (id: string) => Promise<void>

  • Version a query by it's id.

    Takes the latest query and moves it to a versioned directory. All files with this query are also versioned (e.g /queries/GetOrder/schema.json)

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

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

    // moves the latest GetOrder query to a versioned directory
    // the version within that query is used as the version number.
    await versionQuery('GetOrder');