This repository was archived by the owner on Jul 28, 2025. It is now read-only.
Suggestion on Neo4j Implementation. #1544
Closed
dotsinspace
started this conversation in
General
Replies: 1 comment 6 replies
-
Please see #1542 |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I am working on a project where I need to minimize the size of Cypher queries in the codebase. I don't want to integrate
neo4j/graphql
directly because each module in my system has its own set of Cypher queries. The last option I have is to build an ORM to resolve this issue.The existing ORM libraries for Neo4j in Golang have limitations:
neo4j-go-ogm explicitly states that it is not recommended for production.
neogo lacks proper pagination support.
This reminded me of how I implemented
prisma-client-go
for handlingPostgreSQL
. Now, I am wondering if I can somehow integrate Cypher query generation into this client, allowing it to dynamically generate Cypher queries during execution.If this integration is possible, could you guide me on the module flow and where I should implement the Neo4j connector?
Beta Was this translation helpful? Give feedback.
All reactions