In neo4j I know how to get the current datetime as in now() with milliseconds precision, however I would like to be able to store microseconds or nanoseconds. Is there a way to achieve this via apoc, or adjusting my system time. I was reading about the 'limitations' of java Date and Calendar only storing .SSS ?
CREATE (l:LogEvent{
eventID : 'I01'
, dt : System.nanoTime({timezone:'UTC'})
});