Hi!
Is there a way to enable cascading deletes for instances for both direct relations and edges?
Edit: I posted in the wrong group, but i don’t think i can delete.
Solved
Cascading delete of instance
Best answer by Andre Alves
Hi
As far I know Cognite CDF does not natively support cascading deletes for instances through both direct relations and edges. To achieve cascading deletes, you would typically need to implement custom logic within your application or python sciprt as follow.
from cognite.client import CogniteClient
def delete_instance_and_related(client, instance_id):
# Find all relationships and edges related to the instance
relationships = client.relationships.list(target=instance_id)
edges = client.edges.list(target=instance_id)
# Recursively delete related instances
for relationship in relationships:
delete_instance_and_related(client, relationship.source_id)
for edge in edges:
delete_instance_and_related(client, edge.source_id)
# Delete the instance itself
client.instances.delete(instance_id)
# Initialize the Cognite Client
client = CogniteClient()
# Call the function with the ID of the instance to delete
delete_instance_and_related(client, instance_id)
For detailed information you can go to
https://cognite-sdk-python.readthedocs-hosted.com/en/latest/data_modeling.html#cognite.client.data_classes.data_modeling.instances.Edge
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.