BigQueryResourceClient allows you to execute SQL queries against Google BigQuery datasets, explore schemas, and retrieve table metadata.
Usage
Inputs
Theinvoke method accepts the following arguments:
string
required
The SQL query string to execute.
(string | number | boolean | null)[]
An array of values for parameterized queries.
string
required
A unique identifier for this operation, used for tracing and logging.
number
Optional timeout in milliseconds for the query execution.
Outputs
On success (ok: true), the result object contains:
"database"
Discriminator for the response type.
Record<string, unknown>[]
An array of objects representing the rows returned by the query.
number
The number of rows affected by the query.