This is a TypeScript library that converts SQL queries to Cypher queries. It is based on the SQL parser library sql-parser
npm install sql2cypher
import { SQL2Cypher } from 'sql2cypher';
const converter = new SQL2Cypher();
const sql = 'SELECT * FROM table WHERE column = 1';
const cypher = converter.convert(sql);
console.log(cypher);
- SELECT