Parse a SQL string into a Cuttlefish AST.
The WASM parser module is automatically loaded on first call.
SQL string with $1, $2, etc. placeholders
OperationNode representation of the query
const ast = await parseSQL("SELECT * FROM todos WHERE id = $1") Copy
const ast = await parseSQL("SELECT * FROM todos WHERE id = $1")
Parse a SQL string into a Cuttlefish AST.
The WASM parser module is automatically loaded on first call.