I couldn't see any argument in timestamp function. But can we create timestamp from date supplied?
I could also generate timestamp from other language like python or javascript. But it differs to the timestamp as in cypher query language. So, what's the best way to generate timestamp value from given date?
What data do you have to work with? Is it strings/ints or is it already a date and you're trying to go to datatime? An example with what you have would be helpful.
RETURN datetime('2015-06-24T12:50:35.556+0100') AS theDateTime
All you need to do is decide which one you need. If you only have the components of a date but are determined to have the time components included, you can do string concatenation to fill in zeros for the missing time values.