Find the first node matching a predicate
const firstColumn = findFirst(ast, (node) => getExprType(node) === 'column'); Copy
const firstColumn = findFirst(ast, (node) => getExprType(node) === 'column');
Find the first node matching a predicate