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
  • 855 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
  • 1118 Views
  • 1 replies
  • 1 kudos

How to create multiple nodes with a cypher script?

I created a nested json file that contains >10K nodes, each node has >150 properties, I successfully loaded it into neo4j (4.3.1), but, of course, nodes were not created. I know that I can use "CREATE/MERGE (n:PROPERTY) [ON CREATE] SET " method, but...

jzhou002 by Node Link
  • 630 Views
  • 3 replies
  • 0 kudos

Create GDS graph from Virtual Relationships

Hi, What is the appropriate syntax from creating a GDS graph based on virtual relationships? As an example I have a straight forward Cypher query that creates a virtual relationship between companies and I would like to do some cummings detection alg...

Resolved! Cypher querry to detect redundant paths

Hello, I am not able to implement a simple query, so I am looking for help here. How can I get all paths from a graph, where is more than one path from the start node to the end node. So, I am basically looking for all the duplicities in paths. For e...

Doubts about Neo4j Fabric with a Causal Cluster

Hi all, With this configuration, in which the different neo4j DBMS are in different locations, if the connection between them and the Causal Cluster is cut for several hours, would the user be able to make queries about these dbms? Does the Cluster ...

3X_9_c_9cdbd69a83df352c1258ffffa81ba98728201eb1.png

Database name in c# code

Hi All, I created a new database in Neo4j. When I add a new label and Node using c# code it's adding to the neo4j database by default. But I want to add a new Node and label into the new database using c# code. Where I want to Database name in c# cod...

Resolved! Why is this query invalid?

CALL apoc.periodic.iterate( "MATCH (n:Article) return n.nid", "REMOVE n.bertEmbedding", {batchSize:30000, parallel:false, iterateList:true}) The error message: org.neo4j.graphdb.QueryExecutionException: Variable n not defined (line 1, column 65 (...

lingvisa by Graph Fellow
  • 614 Views
  • 2 replies
  • 2 kudos

Resolved! Custom FindAll - SpringData/ Cypher Query

Hello, Assuming I have Surname Unique ( is an Example... ) @Query("MATCH (n:User:`$surname`) return n ") Flux<UserEntity> customFindAll(@Param("surname") String surname); <- This query doesnt work in spring-data otherwise was too easy of course....