sfdx-hardis
Version:
Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards
24 lines (23 loc) • 763 B
TypeScript
import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from '@salesforce/ts-types';
export default class MultiOrgQuery extends SfCommand<any> {
static title: string;
static description: string;
static examples: string[];
static flags: any;
protected allQueryTemplates: any;
protected query: string;
protected queryTemplate: string;
protected targetOrgsIds: string[];
protected targetOrgs: any[];
protected outputFile: any;
protected debugMode: boolean;
protected allRecords: any[];
protected successOrgs: any[];
protected errorOrgs: any[];
run(): Promise<AnyJson>;
private displayResults;
private performQueries;
private manageSelectOrgs;
private defineSoqlQuery;
}