Skip to main content

queryHasVersion

Callable

  • queryHasVersion(directory: string): (id: string, version: string) => Promise<boolean>

  • Check to see if the catalog has a version for the given query.

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

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

    // returns true if version is found for the given event and version (supports semver)
    await queryHasVersion('GetOrder', '0.0.1');
    await queryHasVersion('GetOrder', 'latest');
    await queryHasVersion('GetOrder', '0.0.x');*