jetstreamapp / soql-parser-js

Javascript SOQL parser
https://jetstreamapp.github.io/soql-parser-js/
MIT License
77 stars 20 forks source link

IDEA: Provide a queryBuilder interface to allow more easily composing queries #171

Closed paustint closed 2 years ago

paustint commented 2 years ago

Description

The compose format is great when one has a Query data structure, but it would be nice in code to be able to do something like: .fields(['Id', 'Name']).from('Account').where('something easy here').and('...').limit(100)