Model.hm_gettypeswithunresolvedids#
- Model.hm_gettypeswithunresolvedids()#
Returns a list of entity types that currently have unresolved IDs.
- Returns:
hwReturnStatus- Status objectHmQueryResult- Result object containing the output values:entityTypes (list of strings)
Example#
Get the list of entity types with unresolved IDs , and query the IDs#import hm import hm.entities as ent model = hm.Model() _, result = model.hm_gettypeswithunresolvedids() entity_types = result.entityTypes print("entity_types:", entity_types)