UNPKG

bigquery-client

Version:

A feature-rich Node.js client for Google BigQuery with support for CRUD operations, transactions, query building, and advanced features like aggregate functions, pagination, and logging.

15 lines (14 loc) 390 B
/** * Core Module * * Contains the main BigQuery client functionality including * query building, connection pooling, and transaction management. * * @module Core * @version 1.0.6 * @author Pravin Jadhav */ export { BigQueryClient } from './BigQueryClient'; export { QueryBuilder } from './QueryBuilder'; export { Pool } from './Pool'; export { Transaction } from './Transaction';