cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Scorpion21
Node
since ‎08-09-2022
‎08-31-2022

User Statistics

  • 2 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

I want to deploy neo4j:4.4.9-enterprise via docker-compose and install apoc + gds plugins.This is my docker-compose.yml --- version: '3' services: neo4j: image: neo4j:4.4.9-enterprise hostname: neo4j container_name: neo4j ports: ...
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...