AST Visitor Utilities
This module exports walker and transformer functions for traversing and manipulating SQL AST nodes.
Add a condition to the WHERE clause of a SELECT
const newAst = addWhere(selectAst, eq('deleted', false), 'and'); Copy
const newAst = addWhere(selectAst, eq('deleted', false), 'and');
AST Visitor Utilities
This module exports walker and transformer functions for traversing and manipulating SQL AST nodes.