Balaji Reddy
Balaji Reddy

Reputation: 5700

Date property type in Neo4j

I'm trying to build an application in which I have a functionality where I need to query nodes between two dates/Timestamps. To my surprise , Neo4j has no date property type. Why date type is not included and what is an alternative approach to this? Does any other GraphDB support Date type?

Upvotes: 3

Views: 2842

Answers (1)

vinitha ladi
vinitha ladi

Reputation: 21

If you want to load date datatype to Neo4j from PostgreSQL then first convert them into character varying using to_char function.Because in Neo4j there is no specific data type for dates

Upvotes: 2

Related Questions