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
  • 992 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
  • 1209 Views
  • 1 replies
  • 1 kudos

Resolved! Limit match results per row in path

Hello Community, I'm using Neo4j 4.1 and neo4j-driver for nodeJS. My data looks like this: where INVITED_BY has a property 'wid' that indicates to what workspace a user invited another. I'm using a frontend library to show nodes, and I'm working wit...

2X_6_66b21221dd79c1c1351f4d4fe1d59c2a6b6b81e7.png 2X_5_5447ee7a7ac2b7bc96625a2eee9be933211d188d.png
alete89 by Node Link
  • 841 Views
  • 2 replies
  • 1 kudos

Comparison of Neo4j with Relational Databases

Hello, are you aware of published comparisons of Neo4J with other graph and/or relational databases regarding runtime and memory consumption? Is there a tool contest where Neo4J participated? The comparisons I found are not entirely satisfactory. Sve...

Optimizing a Query

TL;DR: Slow Cypher Query For Large Dataset.. Why? QUERY: EXPLAIN WITH "(?i).test.*" as target MATCH (AA:A)-[r:B]-(CC:C) WHERE ANY(host IN AA.D WHERE host =~ target) OPTIONAL MATCH (DD:D) WHERE CC.id =~ DD.CCid OPTIONAL MATCH (EE:E) WHERE CC.id =~ EE...

neo4j7 by Node
  • 387 Views
  • 1 replies
  • 1 kudos

Multiple parameters in CLI cypher-script

Neo4j 3.5.22 Cypher-Shell 1.1.13 I am running multiple queries that require one or more parameters using scripts, against large datasets and using cypher-shell. Queries that require a single parameter run fine with this command: { echo ":param param_...

d0naka02 by Node Link
  • 702 Views
  • 1 replies
  • 1 kudos

Resolved! Getting relations for visualisation

Hi everyone, I want to draw a graph (nodes and relations). I try to get relations through python lib neo4j, but it doesn't work: I can't give relations (I have it, if I execute the query via Neo4j Browser). How can I get relations? What is better way...

2X_9_9845a2218ea90c8da1279fa26a85494618980a1a.png

Resolved! Trouble with SPLIT and UNWIND syntax

Hey folks - I am struggling a bit with my syntax for SPLIT and UNWIND. I think I am close, but I am getting some weird type errors... I have a CSV that looks like the following: rel-vmtods.csv ,VM Name,Datastore 0,KALPWVAPPEDGE01,"BGHVMAX250_01ba, B...

tmvt by Node Link
  • 1791 Views
  • 5 replies
  • 3 kudos

Resolved! Doesn't import properties when using LOAD CSV command

I am using the line of code below to import a very simple csv file for testing. The data is imported, however, the properties are not. What could be the problem here? Any ideas? /// My line of code LOAD CSV WITH HEADERS FROM "file:///test1.csv" AS ro...

shanna by Node Clone
  • 2011 Views
  • 14 replies
  • 10 kudos

How do I find a subset within a subset?

I have created a match query that extracts a set of subnodes from a graph. match (n:ProgNode {compileunit:'Cwe1057.java', inode:'265'})-[*]->(BIGSET:ProgNode) return BIGSET Thats working fine. But now I need to find a smaller subgraph WITHIN the BIG...

2X_3_31711cf10474483b50aec2b7a07475d1945e457e.png