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

Beta Opportunity for Neo4j Workspace

Introducing Neo4j Workspace We’re inviting you to check out Neo4j Workspace. Workspace combines our most powerful graph tools (Data Importer, Bloom, and Browser) all in one place to help you get up and running with graph databases faster. For experie...

Screen Shot 2022-10-14 at 12.48.07 PM.png
TrevorS by Community Team
  • 900 Views
  • 1 replies
  • 0 kudos

About the Neo4j Graph Platform Category

The Neo4j Graph Platform includes the core database and all the technologies surrounding the database, making it useful and accessible for a lot of different users. When asking a question, please select a descriptive label that best matches your quer...

Neo4j-graph-database-to-graph-platform.png
yolande by Community Team
  • 1147 Views
  • 1 replies
  • 1 kudos

Parameters multiple lines

I am using browser 4.3.1. I have a problem in setting parameters. If I want to set the parameter as a long query with multiple lines. There is error "\n". How to deal with this?

3X_1_b_1b0463f7a0735a3f0d3015c636070b8c23b0fb50.png

Resolved! Is there a way to define default parameters?

I'm looking for a way to insert default parameters to every new node I will create. Apart the uuid, which is possible to define somewhere into the conf file, is there a way to introduce a default created_at for any new node created, with a default da...

OutOfMemory due to Embedded Neo4J server

Actually I am working on a java based project which has embedded neo4J server in it , and initially it's max heap size was 3G but due to it's more memory consumption I it was throwing OutofMemory Error so I increased the max heap to 6G but now I am g...

Resolved! IN clause value order matters when deleting nodes

I'm trying to delete all note nodes that have a relationship to a particular set of services: match (n:note)<--(s:service) where s.serviceid in ["a", "b"] detach delete n My database contains a single note with a relationship to service "b" node. Th...

Resolved! Fail to run Open-GDS Junit test in Eclipse

Hi, all, I'm planning to upgrade my GDS library 1.6.1 to higher version of OpenGDS 1.8.6 or 2.0.2, which my own algorithm is running with. My problem is , OpenGDS seems to be compiled and is running correctly in command line window, but test cases wo...

Jean by Node Link
  • 678 Views
  • 2 replies
  • 0 kudos

Chain Relationship from CSV

I am trying to display a chained relationship from a CSV file that has a procedure in Column 1 and its called procedures in Column 2. Example ProcedureName,CalledProcedureName A,B B,C C,D I am able to create the relationships and display A->B & B->C ...

Error in gds.util.asNode function in GDS 2.0

Using GDS 2.0 and the Python client and trying to do something pretty simple. I have run an algorithm and streamed it to a data frame all good. Now I want to add a column to that data frame with an identifier from the node properties since at the mom...

Spring Data Neo4j loops if there is a cycle

Hello everyone, How can I set the depth/limit the number of hops in Spring Data? I'm using Neo4j DB with SDN, and since I have a cycle I keep getting an infinite loop. I'm trying to retrieve all my nodes with the related relationships and target node...