@triply/triplydb
    Preparing search index...

    Interface ImportQueryOpts

    Options for Account.importQuery.

    interface ImportQueryOpts {
        fallbackDataset: (
            sourceDataset?: Dataset,
        ) => Promise<Dataset | undefined>;
        overwrite: true;
    }
    Index
    fallbackDataset: (sourceDataset?: Dataset) => Promise<Dataset | undefined>

    Chooses the dataset the imported query should run against.

    Called with the source query's own dataset, which may not exist in the target account. Return Called with the source query's own dataset, which may not exist in the target account. Return the dataset to use there; returning undefined fails the import.

    overwrite: true

    Must be true — see ImportDatasetOpts.overwrite.