You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
System information (please complete the following information):
SDK Version:
name = "cognite-sdk-core"
version = "2.56.1"
Describe the solution you'd like
To be able to delete the asset mapping directly as returned from list().
Describe alternatives you've considered
Workaround by converting to a list:
asset_mappings = client.three_d.asset_mappings.list(model_id=model.id, revision_id=revision.id, limit=1000)
client.three_d.asset_mappings.delete(model_id=model.id, revision_id=revision.id, asset_mapping=[a for a in asset_mappings])
The text was updated successfully, but these errors were encountered:
System information (please complete the following information):
SDK Version:
name = "cognite-sdk-core"
version = "2.56.1"
Describe the solution you'd like
To be able to delete the asset mapping directly as returned from list().
Describe alternatives you've considered
Workaround by converting to a list:
The text was updated successfully, but these errors were encountered: