Skip to content

featurebyte.Entity.parents

parents: List[ParentEntity]

Description

Displays a list of the entity parents along with their corresponding IDs and the table ID of the relation table that establishes the parent-child relationship.

Returns

  • List[ParentEntity]
    List of parent entities.

Examples

>>> entity = catalog.get_entity("grocerycustomer")
>>> entity.parents
[ParentEntity(id=ObjectId(...), table_type='scd_table', table_id=ObjectId(...))]

See Also