I am trying to import data from my local PostgreSQL database to neo4j:
Database:graph-test
Schema: os
Table: operating_systems
Firstly, I load the JDBC driver into the memory
CALL apoc.load.driver("org.postgresql.Driver")
Then, I run this query to i...