diff --git a/metadata-ingestion/src/datahub/sdk/search_filters.py b/metadata-ingestion/src/datahub/sdk/search_filters.py index 1ca20b18a8..35694717d5 100644 --- a/metadata-ingestion/src/datahub/sdk/search_filters.py +++ b/metadata-ingestion/src/datahub/sdk/search_filters.py @@ -81,7 +81,7 @@ class _EntityTypeFilter(_BaseFilter): ENTITY_TYPE_FIELD: ClassVar[str] = "_entityType" entity_type: List[str] = pydantic.Field( - description="The entity type to filter on. Can be 'dataset', 'chart', 'dashboard', 'corpuser', etc.", + description="The entity type to filter on. Can be 'dataset', 'chart', 'dashboard', 'corpuser', 'dataProduct', etc.", ) def _build_rule(self) -> SearchFilterRule: diff --git a/metadata-ingestion/tests/unit/sdk/test_client.py b/metadata-ingestion/tests/unit/sdk/test_client.py index 047c2d2df3..713d2e02fe 100644 --- a/metadata-ingestion/tests/unit/sdk/test_client.py +++ b/metadata-ingestion/tests/unit/sdk/test_client.py @@ -40,6 +40,7 @@ def test_graphql_entity_types() -> None: "dataJob": "DATA_JOB", "glossaryNode": "GLOSSARY_NODE", "glossaryTerm": "GLOSSARY_TERM", + "dataProduct": "DATA_PRODUCT", "dataHubExecutionRequest": "EXECUTION_REQUEST", }