fix(graphql,lineage): Fix CLL through queries (#13519)

This commit is contained in:
Andrew Sikowitz 2025-05-14 15:23:06 -07:00 committed by GitHub
parent 18d1a3c2e3
commit b4cc77cfaf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -28,7 +28,10 @@ import lombok.extern.slf4j.Slf4j;
public class QueryType
implements com.linkedin.datahub.graphql.types.EntityType<QueryEntity, String> {
public static final Set<String> ASPECTS_TO_FETCH =
ImmutableSet.of(QUERY_PROPERTIES_ASPECT_NAME, QUERY_SUBJECTS_ASPECT_NAME);
ImmutableSet.of(
QUERY_PROPERTIES_ASPECT_NAME,
QUERY_SUBJECTS_ASPECT_NAME,
DATA_PLATFORM_INSTANCE_ASPECT_NAME);
private final EntityClient _entityClient;
@Override

View File

@ -263,6 +263,8 @@ fragment lineageNodeProperties on EntityWithRelationships {
urn
path
}
query
transformOperation
}
health {
...entityHealth