mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-03 04:10:43 +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
|
||||
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
|
||||
|
||||
@ -263,6 +263,8 @@ fragment lineageNodeProperties on EntityWithRelationships {
|
||||
urn
|
||||
path
|
||||
}
|
||||
query
|
||||
transformOperation
|
||||
}
|
||||
health {
|
||||
...entityHealth
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user