constructor()

in salesforce/lib/query.js [37:50]


    constructor(conn, config, options) {
        this._conn = conn;
        this._config = config || {};

        if (_.isString(config)) {
            this._soql = config;
            this._config = {};
        }
        this._options = _.defaults(options || {}, {
            maxFetch: 10000,
            scanAll: false,
            responseTarget: ResponseTargets.QueryResult
        });
    }