Skip to content

Commit fed0ce4

Browse files
fix: updating imports
1 parent 8aeb2b7 commit fed0ce4

27 files changed

+99
-102
lines changed

projects/observability/src/pages/explorer/explorer.component.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import { ExploreQueryEditorComponent } from '../../shared/components/explore-que
3737
import { ObservabilityTraceType } from '../../shared/graphql/model/schema/observability-traces';
3838
import { ExploreSpecificationBuilder } from '../../shared/graphql/request/builders/specification/explore/explore-specification-builder';
3939
import { EntitiesGraphqlQueryBuilderService } from '../../shared/graphql/request/handlers/entities/query/entities-graphql-query-builder.service';
40-
import { EXPLORE_GQL_REQUEST } from '../../shared/graphql/request/handlers/explore/explore-graphql-query-handler.service';
40+
import { EXPLORE_GQL_REQUEST } from '../../shared/graphql/request/handlers/explore/explore-query';
4141
import { ExplorerDashboardBuilder } from './explorer-dashboard-builder';
4242
import { ExplorerComponent } from './explorer.component';
4343
import { ExplorerModule } from './explorer.module';

projects/observability/src/public-api.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ export * from './shared/graphql/request/handlers/entities/query/entity/entity-gr
2525
export * from './shared/graphql/request/handlers/entities/query/interactions/interactions-graphql-query-handler.service';
2626
export * from './shared/graphql/request/handlers/entities/query/topology/entity-topology-graphql-query-handler.service';
2727
export * from './shared/graphql/request/handlers/explore/explore-graphql-query-handler.service';
28+
export * from './shared/graphql/request/handlers/explore/explore-graphql-query-builder.service';
29+
export * from './shared/graphql/request/handlers/explore/explore-query';
2830

2931
// Services
3032
export * from './shared/services/entity/entity-icon-lookup.service';

projects/observability/src/shared/components/explore-query-editor/explore-visualization-builder.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,7 @@ import { GraphQlGroupBy } from '../../graphql/model/schema/groupby/graphql-group
2222
import { ObservabilityTraceType } from '../../graphql/model/schema/observability-traces';
2323
import { ExploreSpecification } from '../../graphql/model/schema/specifications/explore-specification';
2424
import { ExploreSpecificationBuilder } from '../../graphql/request/builders/specification/explore/explore-specification-builder';
25-
import {
26-
EXPLORE_GQL_REQUEST,
27-
GraphQlExploreRequest
28-
} from '../../graphql/request/handlers/explore/explore-graphql-query-handler.service';
25+
import { EXPLORE_GQL_REQUEST, GraphQlExploreRequest } from '../../graphql/request/handlers/explore/explore-query';
2926
import { CartesianSeriesVisualizationType } from '../cartesian/chart';
3027

3128
@Injectable()

projects/observability/src/shared/dashboard/data/graphql/api-calls-count/api-calls-count-data-source-model.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import { Observable } from 'rxjs';
99
import { map } from 'rxjs/operators';
1010
import { ExploreSpecification } from '../../../../graphql/model/schema/specifications/explore-specification';
1111
import { ExploreSpecificationBuilder } from '../../../../graphql/request/builders/specification/explore/explore-specification-builder';
12+
import { ExploreGraphQlQueryHandlerService } from '../../../../graphql/request/handlers/explore/explore-graphql-query-handler.service';
1213
import {
13-
ExploreGraphQlQueryHandlerService,
1414
EXPLORE_GQL_REQUEST,
1515
GraphQlExploreResponse
16-
} from '../../../../graphql/request/handlers/explore/explore-graphql-query-handler.service';
16+
} from '../../../../graphql/request/handlers/explore/explore-query';
1717

1818
@Model({
1919
type: 'api-calls-count-data-source'

projects/observability/src/shared/dashboard/data/graphql/api-calls-count/api-calls-count-data-source.model.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import { AttributeMetadataType, MetricAggregationType, ObservedGraphQlRequest }
33
import { ModelApi } from '@hypertrace/hyperdash';
44
import { runFakeRxjs } from '@hypertrace/test-utils';
55
import { ExploreSpecificationBuilder } from '../../../../graphql/request/builders/specification/explore/explore-specification-builder';
6+
import { ExploreGraphQlQueryHandlerService } from '../../../../graphql/request/handlers/explore/explore-graphql-query-handler.service';
67
import {
7-
ExploreGraphQlQueryHandlerService,
88
EXPLORE_GQL_REQUEST,
99
GraphQlExploreResponse
10-
} from '../../../../graphql/request/handlers/explore/explore-graphql-query-handler.service';
10+
} from '../../../../graphql/request/handlers/explore/explore-query';
1111
import { ApiCallsCountDataSourceModel } from './api-calls-count-data-source-model';
1212

1313
describe('API call count data source model', () => {

projects/observability/src/shared/dashboard/data/graphql/explore/explore-cartesian-data-source.model.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { ExploreSpecificationBuilder } from '../../../../graphql/request/builder
2121
import {
2222
GQL_EXPLORE_RESULT_INTERVAL_KEY,
2323
GraphQlExploreResponse
24-
} from '../../../../graphql/request/handlers/explore/explore-graphql-query-handler.service';
24+
} from '../../../../graphql/request/handlers/explore/explore-query';
2525
import { CartesianResult } from '../../../widgets/charts/cartesian-widget/cartesian-widget.model';
2626
import { GraphQlGroupBy } from './../../../../graphql/model/schema/groupby/graphql-group-by';
2727
import { ExploreCartesianDataSourceModel, ExplorerData } from './explore-cartesian-data-source.model';

projects/observability/src/shared/dashboard/data/graphql/explore/explore-cartesian-data-source.model.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ import { Series } from '../../../../components/cartesian/chart';
1313
import { ExploreRequestState } from '../../../../components/explore-query-editor/explore-visualization-builder';
1414
import { MetricTimeseriesInterval } from '../../../../graphql/model/metric/metric-timeseries';
1515
import { ExploreSpecification } from '../../../../graphql/model/schema/specifications/explore-specification';
16+
import { ExploreGraphQlQueryHandlerService } from '../../../../graphql/request/handlers/explore/explore-graphql-query-handler.service';
1617
import {
17-
ExploreGraphQlQueryHandlerService,
1818
EXPLORE_GQL_REQUEST,
1919
GraphQlExploreRequest,
2020
GraphQlExploreResponse
21-
} from '../../../../graphql/request/handlers/explore/explore-graphql-query-handler.service';
21+
} from '../../../../graphql/request/handlers/explore/explore-query';
2222
import { CartesianDataFetcher, CartesianResult } from '../../../widgets/charts/cartesian-widget/cartesian-widget.model';
2323
import { ExploreResult } from './explore-result';
2424

projects/observability/src/shared/dashboard/data/graphql/explore/explore-result.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { AttributeMetadataType, MetricAggregationType } from '@hypertrace/distributed-tracing';
2-
import { GQL_EXPLORE_RESULT_INTERVAL_KEY } from '../../../../graphql/request/handlers/explore/explore-graphql-query-handler.service';
2+
import { GQL_EXPLORE_RESULT_INTERVAL_KEY } from '../../../../graphql/request/handlers/explore/explore-query';
33
import { ExploreResult } from './explore-result';
44

55
describe('Explore result', () => {

projects/observability/src/shared/dashboard/data/graphql/explore/explore-result.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
GQL_EXPLORE_RESULT_INTERVAL_KEY,
99
GraphQlExploreResponse,
1010
GraphQlExploreResult
11-
} from '../../../../graphql/request/handlers/explore/explore-graphql-query-handler.service';
11+
} from '../../../../graphql/request/handlers/explore/explore-query';
1212

1313
export class ExploreResult {
1414
private static readonly OTHER_SERVER_GROUP_NAME: string = '__Other';

projects/observability/src/shared/dashboard/data/graphql/explorer-visualization/explorer-visualization-cartesian-data-source.model.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import {
1919
EXPLORE_GQL_REQUEST,
2020
GQL_EXPLORE_RESULT_INTERVAL_KEY,
2121
GraphQlExploreResponse
22-
} from '../../../../graphql/request/handlers/explore/explore-graphql-query-handler.service';
22+
} from '../../../../graphql/request/handlers/explore/explore-query';
2323
import { CartesianResult } from '../../../widgets/charts/cartesian-widget/cartesian-widget.model';
2424
import { ExplorerData } from '../explore/explore-cartesian-data-source.model';
2525
import { ExplorerVisualizationCartesianDataSourceModel } from './explorer-visualization-cartesian-data-source.model';

0 commit comments

Comments
 (0)