最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Cognite Data Fusion Python SDK - how to delete edges that lead to a node with a specific target_edge_id? - Stack Overflow

programmeradmin1浏览0评论

I am using the Cognite Data Fusion Python SDK.

While deleting a node, e.g....

client.data_modeling.instances.delete(NodeId(space='some-space', external_id=deleted_node_id))

I want to also delete the edge(s) from the parent in order to avoid leaving orphan edges in the database.

Problem: how can I look-up such edges?

I know how to get all edges (and then filter by the end_node attribute), but that would be very inefficient:

edges = client.data_modeling.instances.list(
    instance_type="edge", limit=-1)

How could I construct the Filter for the end_node (to match the deleted_node_id) and ideally the type (to equal Child type)? E.g.

edges = client.data_modeling.instances.list(
    instance_type="edge", 
    filter=And(Equal(???), Equal(???)),
    limit=-1)

Because then I could just delete all those edges with one client.data_modeling.instances.delete(edges) call.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论