ck6u4dj0
Results
3
comments of
ck6u4dj0
Same issue.
thanks @jorgegonzalez! fwiw this is my workaround: ``` const deleteNode = (nodeId: string) =>{ if(!query.node(nodeId).isLinkedNode()){ actions.delete(nodeId); }else{ const ancestors = query.node(nodeId).ancestors(); if (ancestors.length > 0) { deleteNode(ancestors[0]); } } }...