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

Resolved! Include counted node in response of other node

I have a graph like below: Nodes: (Node {foo: 'foo'}), (Other {bar: 'bar'}) Now, I would like to return response like below: { foo: 'foo', total: 2 // count of bar } { foo: 'foo', total: 0 // count of bar } But I'm not able to return like s...

2X_8_83e4ed57fdace62c8e50f910f99babac0ae3b918.png 2X_f_f069532b2133f66d546b459bb5918ffef12a9a76.png
ri8ika by Graph Voyager
  • 1088 Views
  • 4 replies
  • 2 kudos

Resolved! How to fuse same nodes

Hello, I have a problem : I'm working on a Graph with Countries of the world I use this Cypher command : LOAD CSV WITH HEADERS FROM "file:///test.csv" AS line create (cap:Capitale {name: line.capital}) create (p:Pays {name: line.pays, population: lin...

Resolved! Help with Hardware Sizing for Neo4j Solution

Hello i need help and recommendations about Hardware that i need to create a solution running Neo4j as Database. Actually I have 2 nodes and 1 relationship between this nodes. Node Clients (10,000,000) with 10 properties in each node.Node Products (9...

Why its taking more time(4190ms) to get response while hitting from aws to server db,and taking only few milliseconds(615ms) from localhost to server db

Please keep the following things in mind: did you search for what you want to ask before posting?please use tags for additional infouse a self-descriptive title Please format code + Cypher statements with the code </> icon, it's much easier to read. ...

3v4ever by Node Link
  • 1058 Views
  • 3 replies
  • 0 kudos

Index building performance fulltext vs schema

I'm trying to index a unique string property on ~170M nodes. I've noticed that building a native (B-tree) index takes a very long time (several hours), but building a fulltext (Lucene) index takes around 40 minutes. For my use case I'd prefer the sch...

dsolow by Node Link
  • 1326 Views
  • 3 replies
  • 0 kudos

Resolved! Count of properties

how to list each property of the node for the complete db and the corresponding count. Idea is to reconcile the data received from source system is loaded or not #neo4j-graph-platform:cypher

Parallel Cypher & Apoc

Hi all! We have a broad network, and when traversing the tree, we are attempting to leverage all cores on our machine, parallelising the process (to speed up results!). We have attempted apoc.cypher.mapParallel with little success, and while we can g...

Faking dynamic rel types

One of the things I've seen requested (as far back as version 2.x I think), that is planned to come in GQL 10, is being able to use variables for rel names. Something like: UNWIND ['rel1', 'rel2'] as dynamicType MATCH (n)-[:$dynamicType]->(m) RETURN ...