Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
06-16-2021 04:35 PM
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,
06-16-2021 05:52 PM
And i found some mistyped in APOC.
I don't know where to report
misspell in example: usage-apoc.date.currentTimestamp
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/)
CREATE (c:Car {make:"Volvo")-[rel:DRIVES {year:2001}]->(p:Person {name:"Dan"})
▼▼▼
CREATE (c:Car {make:"Volvo"})-[rel:DRIVES {year:2001}]->(p:Person {name:"Dan"})
(the figure show "foo - bar" example)
All the sessions of the conference are now available online