@earth-app/collegedb
    Preparing search index...

    Type Alias IntegrationResult

    Represents the result of integrating an existing database with CollegeDB. Contains information about the success of the integration, shard name, number of tables processed, total records integrated, mappings created, and any issues encountered during the process.

    type IntegrationResult = {
        issues: string[];
        mappingsCreated: number;
        shardName: string;
        success: boolean;
        tablesProcessed: number;
        totalRecords: number;
    }
    Index

    Properties

    issues: string[]
    mappingsCreated: number
    shardName: string
    success: boolean
    tablesProcessed: number
    totalRecords: number