Hello,
I’m new at Neo4j and just started studying APOC.
I saw virtual nodes ( and relations?) have negative ids (in this virtual node&rels page), but when i querying apoc. graph. * procedures, the output node, and relationships have positive ids. I followed the example cypher.
(oh, except apoc.graph.fromDocument and I didn't check apoc.graph.validateDocument)
The nodes and relationships in the virtual graph can have positive ids?
And when running the apoc.graph.fromDocument example, i expected the result like below,
WITH apoc.date.currentTimestamp() AS outputInMs
RETURN outputinMs, datetime({epochMillis: output}) AS datetime;
▼▼▼
WITH apoc.date.currentTimestamp() AS outputInMs
RETURN outputInMs, datetime({epochMillis: outputInMs}) AS datetime;
bracket error and figure mismatch in [invert-relationship](https://neo4j.com/labs/apoc/4.1/graph-updates/graph-refactoring/invert-relationship/)