feat(sdk): add data products to suggested entity type filters (#14159)

This commit is contained in:
Harshal Sheth 2025-07-22 08:23:59 -07:00 committed by GitHub
parent 7f9891d530
commit 648983a710
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -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:

View File

@ -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",
}