@salesforce/soql-model
Version:
21 lines • 744 B
JavaScript
/*
* Copyright (c) 2021, salesforce.com, inc.
* All rights reserved.
* Licensed under the BSD 3-Clause license.
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.SelectCountImpl = void 0;
const soqlModelObjectImpl_1 = require("./soqlModelObjectImpl");
class SelectCountImpl extends soqlModelObjectImpl_1.SoqlModelObjectImpl {
constructor() {
super();
}
// eslint-disable-next-line @typescript-eslint/no-unused-vars
toSoqlSyntax(options) {
return 'SELECT COUNT()';
}
}
exports.SelectCountImpl = SelectCountImpl;
//# sourceMappingURL=selectCountImpl.js.map
;