method DynamoAdapter.prototype.rawQuery
DynamoAdapter.prototype.rawQuery<T>(
_sql: string,
_params?: unknown[]
): Promise<T[]>

Refuses the raw SQL query by name — DynamoDB has no SQL — rather than emulating it (the silent-divergence defect M70j closed). The error names the adapter and points at the client for native commands.

It rejects, never throws synchronously.

Type Parameters

Parameters

_sql: string
optional
_params: unknown[]

Return Type

Promise<T[]>

Usage

import { DynamoAdapter } from "database-plugin/src/index.ts";