How to get create date time of a node?

I have searched internet before asking question.

My simple question is - How can I get date-time of creation of a node in current database through cypher query?

@guptaeshant

Neo4j does not record date/time of creation of nodes/relationships. At best you could use APOC and create a trigger that upon creation it would define a property at the node/releationship and include its date/time of creation

Any log that I can peek into to know API calls with date-time? How can I enable with neo4j community edition?

@guptaeshant

Any log that I can peek into to know API calls with date-time?

you mean is there a log when someone calls /db/data//tx/commit ?

or something else?

Simply add a property, 'CreatedDate' in every node and store the created date in that property. This worked for me.

1 Like

I can't add this in CD environments