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
{{ message }}
This repository has been archived by the owner on May 23, 2019. It is now read-only.
getOrCreateNode
lknU_n <- getOrCreateNode(graph,"Contact" ...
Is it possible to have a flag to know if the node was retrieved or created?
I would like to trigger different actions:
Scenario:
Merging several file transmissions from different countries using the same db.schema with different or same data included.
Code interpretation:
getOrCreateNode = createNode ( using constraints ) + getNode
node = try(createNode(graph, .label, ...), TRUE)
_constraint validation _
if("try-error" %in% class(node)) {
node = getUniqueNode(graph, .label, props[1])
}
return(node)
The text was updated successfully, but these errors were encountered: