mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-13 17:59:48 +00:00
fix(graphql,lineage): Fix CLL through queries (#13519)
This commit is contained in:
parent
18d1a3c2e3
commit
b4cc77cfaf
@ -28,7 +28,10 @@ import lombok.extern.slf4j.Slf4j;
|
|||||||
public class QueryType
|
public class QueryType
|
||||||
implements com.linkedin.datahub.graphql.types.EntityType<QueryEntity, String> {
|
implements com.linkedin.datahub.graphql.types.EntityType<QueryEntity, String> {
|
||||||
public static final Set<String> ASPECTS_TO_FETCH =
|
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;
|
private final EntityClient _entityClient;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@ -263,6 +263,8 @@ fragment lineageNodeProperties on EntityWithRelationships {
|
|||||||
urn
|
urn
|
||||||
path
|
path
|
||||||
}
|
}
|
||||||
|
query
|
||||||
|
transformOperation
|
||||||
}
|
}
|
||||||
health {
|
health {
|
||||||
...entityHealth
|
...entityHealth
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user