We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8421b80 commit 2875d47Copy full SHA for 2875d47
packages/cubejs-client-core/index.d.ts
@@ -560,6 +560,7 @@ declare module '@cubejs-client/core' {
560
561
query(): Query;
562
rawData(): T[];
563
+ annotation(): QueryAnnotations;
564
}
565
566
export type Filter = {
packages/cubejs-client-core/src/ResultSet.js
@@ -507,6 +507,10 @@ class ResultSet {
507
rawData() {
508
return this.loadResponse.data;
509
510
+
511
+ annotation() {
512
+ return this.loadResponse.annotation;
513
+ }
514
515
timeDimensionBackwardCompatibleData() {
516
if (!this.backwardCompatibleData) {
0 commit comments