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

Using Graph Algorithms to Detect Supernodes

Hi there, I am trying to establish a process to detect supernodes using one of the graph algorithms. I'm currently using Degree Centrality, and am running into performance issues. I'm working with a very large graph >2 billion nodes, and when testing...

Resolved! MERGE with null and coalesce

I am wondering how this following query works. We start with an empty DB. WITH [{a:1, b:null}, {a:1, b:null}] AS rows UNWIND rows AS row MERGE (t:Test {a:row.a, b:coalesce(row.b, 'none')}) SET t.b=row.b Added 1 label, created 1 node, set 3 propertie...

jhyot by Node Link
  • 3860 Views
  • 2 replies
  • 0 kudos

Resolved! DeadlockDetectedException

I use apoc.periodic.iterate function: CALL apoc.periodic.iterate( "load csv from 'file:///user_friends.csv' as line with toInteger(line[1]) as start_id, toInteger(line[0]) as end_id match (a:User{id:start_id}),(b:User{id:end_id}) return a,b ", "where...

Cypher query Issue

Neo4j Desktop 1.2.0 Neo4j 3.5.1 Neo4j Browser 3.5.6 code used: LOAD CSV WITH HEADERS FROM "file:C:\Users\jlambright.Neo4jDesktop\neo4jDatabases\database-<#>\installation-3.5.6\import\test.csv" AS line MERGE (n:MyNode {Name:line.Source}) MERGE (m:MyNo...

JSENL by Node
  • 1769 Views
  • 3 replies
  • 0 kudos

Using neo4j as a LOB classic database

Hi, We would like to create our own ERP solution for using in several different use-cases: CRM, remote mobile app management, e-commerce, advanced content management and more. You might want to refer it as a "Line of business" AKA L.O.B type of apps....

Toggle relationship

I have found a link which states to toggle the relationship: MATCH (u:User) WHERE id(u) = 1 (p:Post) WHERE id(p) = 1 CREATE (u)-[:LIKES]->(p) WITH u, p MATCH (u)-[r:LIKES]->(p), (u)-[:LIKES]->(p) DELETE r But I'm not able to understand how toggle is...

ri8ika by Graph Voyager
  • 890 Views
  • 3 replies
  • 0 kudos

Resolved! Using variable inside foreach

MATCH (n:Node) // .... // keys => ['foo', 'bar'] FOREACH (k IN keys | SET n.k = 'something') > variable n is not defined What I'm trying to do is something like: n.foo = 'something' n.bar = 'something'

ri8ika by Graph Voyager
  • 1754 Views
  • 6 replies
  • 1 kudos

Resolved! Cypher script execution error

getting error while trying to run below cyper script neo4j> cypher-shell -file /var/lib/neo4j/import/testscript.cql; Invalid input '-': expected (line 2, column 1 (offset: 7)) "-shell -file /var/lib/neo4j/import/testscript.cql;" Where should we plac...

Resolved! Is there on not match statement?

I am trying to set different property if query is matched and not matched. But I'm not able to find in the documentation. Something like this? MATCH (n:Node) // blah, blah, blah ON MATCH SET n.one = 'one' ON NOT MATCH SET n.two = 'two' I also tried ...

ri8ika by Graph Voyager
  • 2992 Views
  • 6 replies
  • 2 kudos

Unable to convert dates with apoc

Hi, I'm trying to build a subgraph with times and dates in my recommender system of players. For example, I created 24 nodes (for each hour of the day) with the aim of classifying the users that connect a specific time. This way I'd be able recommend...

2X_8_88db9fd228fdb8da7def2adbe47d9f6282afc144.png

Kubernetes helm read replica access

Hi, We are using helm to deploy neo4j on a kubernetes cluster starting with this repo: GitHub neo4j-contrib/kubernetes-neo4j (RETIRED) Kubernetes experiments with Neo4j. See updated Helm Repo - neo4j-contrib/kubernetes-...

ivi by Node
  • 1198 Views
  • 3 replies
  • 0 kudos

Graph recommender engine

Anybody have resources on how to build a recommend-er engine based on shows watched by a user, running on neo4j ( or any graph database ). Using some APOC graph algorithms or any ML models I would really appreciate this.

werner by Node Clone
  • 643 Views
  • 1 replies
  • 1 kudos