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
  • 857 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
  • 1120 Views
  • 1 replies
  • 1 kudos

Cartesia product

hi, i have a problem with this quary: match(n:Reato), (m:Reato) where n.Id > m.Id with toInteger(apoc.text.jaroWinklerDistance(n.totale, m.totale) * 100) as sim1,toInteger(apoc.text.distance(n.totale, m.totale) * 100) as sim2 where sim1 > 8...

Create edges and their labels from LOAD CSV

I want to create a set of edges using LOAD CSV. I want their labels to be parameters from the file. I naively tried this: LOAD CSV WITH HEADERS FROM "file:///edges.csv" AS row MATCH(node1:row.tag1 {name:row.name1}),(node2:row.tag2 {name:row.name2}) C...

oaklodge by Node Link
  • 628 Views
  • 2 replies
  • 0 kudos

Resolved! Creating NEW relationships among nodes' neighbours

Hi, I have a graph containing neighbours, that is, structured in a star type schema in the language of DW modelling("Account" nodes having multiple "Fraud" nodes attached to them). I want to create a further relationship among Fruds nodes associated ...

Resolved! Repeating matches

I want to model a system as a graph. I'm starting small; I just want to model the power flow. So I created this graph: CREATE (n:World {name:"Power", provides:"power"}); CREATE (n:System {name:"Connector", carries:"power"}); CREATE (n:System {name:"...

oaklodge by Node Link
  • 719 Views
  • 4 replies
  • 3 kudos

Coding window larger?

Good Morning Neos, Is there any chance to make the coding window in Neo4J-Desktop larger (let's say full screen)? I have to build a rather complicated query and the scrolling is a bit annoying.... Thank you, JJJ

janezic by Graph Voyager
  • 1276 Views
  • 8 replies
  • 0 kudos

Bottleneck on apoc.when

Hi all, I don´t know where is the problem on the query, because the first part is too fast (a few ms) but the second has two when, which takes a long time to consult. (1min) The first part filters a lot of data, it doesn't seem like the amount of da...

3X_3_1_31f3cab34724d54f9504e54fe415e098ab81c482.png 3X_e_6_e617adfeec0e02cb67c686c10646c0cb0d7c229d.png 3X_4_8_48a5cecd17c9e01383ebd679005c40d344ec82c0.png 3X_b_2_b28a44131a7d072ab7f85c3d64e8cbaf36ccd184.png

How to create database name in Bolt Driver?

I used to only create one database so I used the default database name 'neo4j-default'. Now I need to create one more database, and I want to explicitly give the db a name. How to do that? I thought I should change this line: my_driver = GraphDatabas...

lingvisa by Graph Fellow
  • 734 Views
  • 3 replies
  • 0 kudos

Different results yielded in cypher coalesce

Hi, I am not able to understand why the below query returns different results. MATCH (service:Service) WHERE coalesce(service.name = 'Service1Name', service.aliasValue = 'Service2Alias') RETURN service; Initially I have data as below CREATE (s:Servic...

Resolved! Cypher Query - Sum function for lower nodes

Hi Everyone, I am facing a challenge calculating the sum of lower nodes in my graph. Consider the below scenario: Multiple such paths are present in the graph, and I want to calculate the sum of all the lowest nodes of Storage and store the value of...

3X_b_f_bfc26d7442ab6af46bfd702c2d0f05567f25d078.png