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
  • 630 Views
  • 0 replies
  • 0 kudos

Graphenedb request timeout

Hi! I'm running Neo4j on Heroku with GrapheneDB. My app is experiencing strange behavior. When I got to https://www.amos.app/learn and start typing, it correctly sends a request to https://www.amos.services (where my backend is hosted). However, the ...

dteiml by Node
  • 640 Views
  • 1 replies
  • 1 kudos

Resolved! Multi tenancy in GRANDStack

Hi, I'm trying to implement multitenancy in a Neo4j database with GRANDStack. Each tenant corresponds to a company and each company will have its own graphql schema. Researching, I've read that, for now, multitenancy in Neo4j is not supported nativel...

Cypher query using Java (Match operator)

Hello everyone, I am new in Neo4j and Java programming, and I am trying to get all the properties of an object (node), giving as a condition that my ID must be equal to the text I am writing (abcd). This is how I wrote it: MatchQuery.send(JSON.string...

Pass ConstraintError and keep creating nodes

Hi all, I am trying to increase my import speed and at the same time avoid duplicate nodes. Since MERGE is slower than CREATE, I thought it might be useful to simply CREATE nodes while having a UNIQUE constraint in place. This obviously comes with a ...

Resolved! Neo4j embedded graph java visualization

Hi, I'm beginning in Neo4j java embedded graph. I have made a first test but I cant visualize my graph in neo4j-community. Here is my code for create the graph : package connection; import java.io.File; import org.neo4j.graphdb.GraphDatabaseService...

Spring-data neo4j 4.0 release multi-tenant

Hi all, I'm new to neo4j and just integrating neo4j with spring data to our web application where the back-end is written in java. We already use spring, hibernate and ms-sql. Also use the multi-tenant as tenant per database. So every tenant has it o...

Tried using official GO driver - Poor performance

Hi, I'm new to Neo4j and I've been playing around with the whole platform. Lately, I've been experimenting with interacting with the DB from a Go program. To do this, I rewrote this GO code goneo-example using neo4j-go-driver . For the merge function...

cnhx27 by Node Link
  • 1771 Views
  • 6 replies
  • 0 kudos

Neo4j Driver - Query result to pyQT5 comboBox

I am trying to get a query result using NEO4j driver to populate a PyQt5 comboBox. I believe I am on the right track, however run in the challenge to convert the query result to a list that can be loaded in self.comboBox.addItems(list). this is what ...

2X_4_471fd112ce81bdcd173ef46796ca79cb763bab85.png 2X_3_3a9f6a97f3d78561bb0abb659352fbd4820f752a.png 2X_6_631059d18331dd1575ea0af82f7ad4269043d69e.png

Neo4j JSON-format for HTTP-endpoint is unspecified?

The only documentation on Neo4j's HTTP-endpoint is given by a set of examples. As far as I can see there is no formal specification of the JSON-responses a request might result in. This makes writing a driver for the HTTP-endpoint guesswork. For exam...

Need help of pyhon driver。

Today i run my code and i get the following error: Failed to write data to connection Address(host='localhost', port=7687) (Address(host='xxx.x.x.x', port=7687)); ("0; 'Underlying socket connection gone (_ssl.c:xxxx)'") I downgrade my python driver a...

Hosting GraphQL API from GRANDstack starter

I used the GRANDstack starter to make a website. Now I am trying to host it. I was able to host the Neo4j on GCP. However, I am having trouble with the GraphQL API. I notice there is no script for production only test, start and seedDB. I never use...