in src/CloudTraceVariableFindQuery.ts [41:48]
async handleProjectsQuery() {
const projects = await this.datasource.getProjects();
return (projects).map((s) => ({
text: s,
value: s,
expandable: true,
} as SelectableValue<string>));
}