With the legacy ID() being deprecated, and the new elementId() creating an alphanumeric - I have a challenge working with graph projections in GDS.
With beta functionality, we are testing a gds projection into another database (basically a graphlet). However with projection limitations you can only push out numeric property values.
I'd sometimes like the ability to come back to the subgraph I exported, and re-attach some property values (from the original graphdb) that are non-numeric. I could easily do this, as long as the projected graph nodes have a uid value on it, that I can use in a query to find the original node, and retrieve properties.
That works fine with id(n) but won't work with elementId(n).
Is there (or could we add functionality) to something like apoc.create.uuid where you request a strictly numeric return value? or is there another built-in function to create a purely numeric UID?
Thanks!