From 61e8ad213528af832bad55a2ecb5d018a69ef2a4 Mon Sep 17 00:00:00 2001 From: Jake Bassett Date: Wed, 24 Mar 2021 16:31:56 -0700 Subject: [PATCH 1/2] feat: request includeInactive for all entity id queries --- .../query/entity/entity-graphql-query-handler.service.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/observability/src/shared/graphql/request/handlers/entities/query/entity/entity-graphql-query-handler.service.ts b/projects/observability/src/shared/graphql/request/handlers/entities/query/entity/entity-graphql-query-handler.service.ts index f719ca399..8763c9ec1 100644 --- a/projects/observability/src/shared/graphql/request/handlers/entities/query/entity/entity-graphql-query-handler.service.ts +++ b/projects/observability/src/shared/graphql/request/handlers/entities/query/entity/entity-graphql-query-handler.service.ts @@ -8,7 +8,7 @@ import { } from '@hypertrace/graphql-client'; import { Observable } from 'rxjs'; import { map, throwIfEmpty } from 'rxjs/operators'; -import { Entity, EntityType, ObservabilityEntityType } from '../../../../../model/schema/entity'; +import { Entity, EntityType } from '../../../../../model/schema/entity'; import { GraphQlEntityFilter } from '../../../../../model/schema/filter/entity/graphql-entity-filter'; import { EntitiesGraphqlQueryBuilderService } from '../entities-graphql-query-builder.service'; import { @@ -57,8 +57,8 @@ export class EntityGraphQlQueryHandlerService implements GraphQlQueryHandler Date: Thu, 25 Mar 2021 10:33:27 -0700 Subject: [PATCH 2/2] feat: includeInactive is configurable defaulting to true --- .../query/entity/entity-graphql-query-handler.service.ts | 5 +++-- .../interactions-graphql-query-handler.service.ts | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/projects/observability/src/shared/graphql/request/handlers/entities/query/entity/entity-graphql-query-handler.service.ts b/projects/observability/src/shared/graphql/request/handlers/entities/query/entity/entity-graphql-query-handler.service.ts index 8763c9ec1..f540b11c9 100644 --- a/projects/observability/src/shared/graphql/request/handlers/entities/query/entity/entity-graphql-query-handler.service.ts +++ b/projects/observability/src/shared/graphql/request/handlers/entities/query/entity/entity-graphql-query-handler.service.ts @@ -57,8 +57,8 @@ export class EntityGraphQlQueryHandlerService implements GraphQlQueryHandler