This service is used to ingest data into the database

interface IngestionService {
    updateMany<T extends BaseModel>(
        options: IngestOptions<T>,
    ): Promise<IngestResult>;
}

Methods

Methods