We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed801a7 commit 9617400Copy full SHA for 9617400
1 file changed
extensions/ql-vscode/src/query-results.ts
@@ -85,6 +85,10 @@ export class CompletedQuery implements QueryWithResults {
85
return this.config.format;
86
}
87
88
+ get didRunSuccessfully(): boolean {
89
+ return this.result.resultType === messages.QueryResultType.SUCCESS;
90
+ }
91
+
92
toString(): string {
93
return this.interpolate(this.getLabel());
94
0 commit comments