The SynthQL backend.
import { QueryEngine } from "@synthql/backend"
// Initialize the client
const queryEngine = new QueryEngine({...})
// Write your query
const query = from('users')
.columns('id','first_name')
.where({id: {in:[1,2,3]}})
.many()
// Execute the query
queryEngine.execute(query);