Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ingest/graph): Update get_results_by_filter graphql query #10991

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions metadata-ingestion/src/datahub/ingestion/graph/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -926,6 +926,8 @@ def get_results_by_filter(
) -> Iterable[dict]:
"""Fetch all results that match all of the given filters.

Note: Only supported with Acryl Cloud.

Filters are combined conjunctively. If multiple filters are specified, the results will match all of them.
Note that specifying a platform filter will automatically exclude all entity types that do not have a platform.
The same goes for the env filter.
Expand Down Expand Up @@ -991,6 +993,10 @@ def get_results_by_filter(
entity {
urn
}
extraProperties {
name
value
}
}
}
}
Expand Down
Loading