@triply/triplydb
    Preparing search index...

    Interface ImportStoryOpts

    Options for Account.importStory.

    interface ImportStoryOpts {
        fallbackQuery: (sourceQuery: Query) => Promise<Query>;
        overwrite: true;
    }
    Index
    fallbackQuery: (sourceQuery: Query) => Promise<Query>

    Chooses the query each of the story's elements should use.

    Called with the source story's query, which may not exist in the target account. Import the queries first and return the target's copy.

    overwrite: true

    Must be true — see ImportDatasetOpts.overwrite.