Skip to content

Commit

Permalink
fix(iceberg-cli): add missing filter for iceberg dataplatform
Browse files Browse the repository at this point in the history
  • Loading branch information
chakru-r authored Feb 27, 2025
1 parent d303d03 commit e67bc81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metadata-ingestion/src/datahub/cli/iceberg_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ def get_all_warehouses(client: DataHubGraph) -> Iterator[str]:
graph_query = """
query getIcebergWarehouses($start: Int, $count: Int) {
search(
input: {type: DATA_PLATFORM_INSTANCE, query: "*", start: $start, count: $count}
input: {type: DATA_PLATFORM_INSTANCE, query: "dataPlatform:iceberg", start: $start, count: $count}
) {
start
total
Expand Down

0 comments on commit e67bc81

Please sign in to comment.