Skip to content

Commit

Permalink
feat(ui): support all entities with display names in browse paths v2
Browse files Browse the repository at this point in the history
  • Loading branch information
Masterchen09 committed Dec 16, 2024
1 parent 35a054f commit 4db2a93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 48 deletions.
25 changes: 1 addition & 24 deletions datahub-web-react/src/graphql/browseV2.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,7 @@ query getBrowseResultsV2($input: BrowseV2Input!) {
entity {
urn
type
... on Container {
properties {
name
}
}
... on DataFlow {
properties {
name
}
}
... on DataPlatformInstance {
platform {
name
properties {
displayName
}
}
instanceId
}
... on Dataset {
properties {
name
}
}
...entityDisplayNameFields
}
}
start
Expand Down
25 changes: 1 addition & 24 deletions datahub-web-react/src/graphql/fragments.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1098,30 +1098,7 @@ fragment browsePathV2Fields on BrowsePathV2 {
entity {
urn
type
... on Container {
properties {
name
}
}
... on DataFlow {
properties {
name
}
}
... on DataPlatformInstance {
platform {
name
properties {
displayName
}
}
instanceId
}
... on Dataset {
properties {
name
}
}
...entityDisplayNameFields
}
}
}
Expand Down

0 comments on commit 4db2a93

Please sign in to comment.