Closed szarnyasg closed 4 years ago
In the Neo4j import headers, most of the creationDate/deletionDate timestamps should not be loaded to the database. In the Neo4j import tool, this can be achieved with the :IGNORE type. https://github.com/ldbc/ldbc_snb_implementations/blob/b27b70efc4feb5887c6aada4e8351b83efd50d83/cypher/scripts/headers.txt#L9-L31 There are some exceptions, e.g. the creationDate of the hasMember edge, née joinDate is used and should be be loaded.
creationDate
deletionDate
:IGNORE
hasMember
joinDate
This has been fixed: only the "raw data mode" generates deletionDate attributes. The normal (interactive/bi) generator omits these timestamps.
In the Neo4j import headers, most of the
creationDate
/deletionDate
timestamps should not be loaded to the database. In the Neo4j import tool, this can be achieved with the:IGNORE
type. https://github.com/ldbc/ldbc_snb_implementations/blob/b27b70efc4feb5887c6aada4e8351b83efd50d83/cypher/scripts/headers.txt#L9-L31 There are some exceptions, e.g. thecreationDate
of thehasMember
edge, néejoinDate
is used and should be be loaded.