I am trying to implement neomodel package in my Django code which is designed as a back-end service. The problem I am facing is that I already established a PostgreSQL connection from Django but I am facing difficulty in in using the same database for neomodel. From the official neomodel website, I can see:
from neomodel import db
db.set_connection('bolt://neo4j:neo4j@localhost:7687')
Is there any feasible solution for me to connection to an external database to neomodel for graph analytics? Any help would be appreciated.
Thanks, Winston