diff --git a/datahub-web-react/src/graphql/lineage.graphql b/datahub-web-react/src/graphql/lineage.graphql index 74f2e9b713beff..25f0ffc714e899 100644 --- a/datahub-web-react/src/graphql/lineage.graphql +++ b/datahub-web-react/src/graphql/lineage.graphql @@ -141,25 +141,6 @@ fragment lineageNodeProperties on EntityWithRelationships { } } -fragment relationshipFieldsWithoutSiblings on EntityWithRelationships { - ...lineageNodeProperties - ... on Dataset { - siblings { - isPrimary - siblings { - urn - type - } - } - } - upstream: lineage(input: { direction: UPSTREAM, start: 0, count: 100 }) { - ...leafLineageResults - } - downstream: lineage(input: { direction: DOWNSTREAM, start: 0, count: 100 }) { - ...leafLineageResults - } -} - fragment relationshipFields on EntityWithRelationships { ...lineageNodeProperties ... on Dataset { @@ -168,7 +149,7 @@ fragment relationshipFields on EntityWithRelationships { siblings { urn type - ...relationshipFieldsWithoutSiblings + ...lineageNodeProperties } } } @@ -222,7 +203,7 @@ query getEntityLineage($urn: String!) { siblings { urn type - ...relationshipFieldsWithoutSiblings + ...lineageNodeProperties } } }