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.

Forum Posts

About the Drivers & Stacks category

All applications using Neo4j depend on drivers to execute statements to update or query data. Neo4j drivers are mostly built on the binary Bolt protocol. Official drivers exist for Java, JavaScript, .Net, Python, and Go and more. Other languages (R, ...

yolande by Community Team
  • 576 Views
  • 0 replies
  • 0 kudos

ImpermanentGraphDatabase() for AuraDB?

I'm using neo4j Python driver, connecting to my AuraDB instance.I wonder if I can create a in-memory database connection for unit testing purpose. I know in Java you could achieve this by using `.ImpermanentGraphDatabase()` method. Is there such a th...

Resolved! Unable to connect to Podman neo4J from Python

New to neo4j. Trying to set up an environment to prototype an idea, and I am being very unlucky using Python to connect to a neo4j running in Podman, no K8s, no fanciness, just a straight-up container.  1) Setup:Running macOS M1, Monterey 12.52) neo4...

Resolved! Transactions and auto-commit

Hi everyone!I am using go-client and i can't understand one thing - should I commit or rollback transactions manually?WriteTransaction and ReadTransaction are used in such way:   session := r.driver.NewSession(neo4j.SessionConfig{ DatabaseName: r.d...

[Poll] Your object graph mapping stack

Hi everyone, we always love to help you here but this time we ask you for your support. What is your technology stack of choice that you currently use or plan to use regarding object graph mapping in Java? Spring Data Neo4jNeo4j-OGM 0 voters ...

neo4j desktop linux flatpak

Hi, as the linux app packaging landscape is moving more towards flatpaks (or ubuntu snaps), are there any plans for releasing the neo4j-desktop app as a flatpak ? I am interested in packaging it as a flatpak, and maybe could help with that. IMHO flat...

trying to load query from jdbc:sqlserver with apoc

DearI'm trying to execute the following query in the neo4j prompt with the apoc jdbc driverCALL apoc.load.jdbc('jdbc:sqlserver://FQDN;databaseName=PRISMDB_Q_SNAPSHOT;user=ruser;password=notvisible','select distinct ped_id PED_ID, c_uid UIDfrom SEED_T...

How to make Neo4j GraphQL schema Relay compliant?

I am trying to make a GraphQL server Relay compliant. I trried to add Node interface in the schema.graphql (as suggested on Relay.dev graphql-server-specification) but I am getting the following error: Error: Type or Interface with name `Node` reserv...

Raj725 by Node Clone
  • 241 Views
  • 0 replies
  • 0 kudos

Integrating Neo4j with Nestjs and Graphql

neo4j-graphql-js @relation directive produce a @relation undefined error in nestjs graphql generate-typings: Using the following: type Author { id: ID! name: String! posts: [Post] @relation(name: "REGISTERED", direction: ...

Wrong cypher query behaviour with the java driver

I am building a Spring Boot service that connects to a neo4j database via the neo4j-java-driver. One REST endpoint builds a paginated search query with skip and limit that looks like the following:   MATCH (i:Item)-[:HAS_PRICE]->(p:Price) WHERE p.a>...