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
  • 966 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
  • 1195 Views
  • 1 replies
  • 1 kudos

Pattern comprehension - sort output

Is there a way to get the output of a pattern comprehension sorted without wrapping it in a apoc.coll.sortNodes or apoc.coll.sortMulti? Would be nice, if WITH and ORDER BY could by applied directly within the predicate section - maybe I missed it? Be...

Reiner by Graph Buddy
  • 2532 Views
  • 11 replies
  • 2 kudos

How prepare CSV files?

Hello Everyone, I need to developt a graph database with Neo4j. There is some point that are not very for me.. I understand how load CSV files in the database, how create nodes between the data, but what I don't understand if we have several CSV file...

Issues with neo4j-admin import

I need to import 14 mil. nodes from a csv. After some efforts with threaded apoc.import.csv, came upon the import using neo4j-admin at this link Importing CSV Data into Neo4j - Developer Guides Well, it did import all 14mil nodes in like 2 minutes, ...

3X_1_7_17925ce96e086ee9bb55c42c396b8aab9c1f4241.png

Neo4J Desktop Installation behind proxy

While Installing Neo4J Desktop behind a proxy, the sample Movie database is not being installed , this is because the installer is trying to fetch an yml from https://dist.neo4j.org/neo4j-desktop/win/latest.yml, and is not able to reach this address...

Resolved! Load multiple CSV rows into same node

I have the following CSV: id attr value 1 abc 1.1 1 eww -9.4 1 ssv likj 2 we2 1 2 eww 900 3 kuku -91 3 lulu 383 3 ssv bubu I would like to create 3 nodes that consists of: Node 1: {id:1, abc: 1.1, ...

steve5 by Node
  • 1198 Views
  • 9 replies
  • 2 kudos

Generating random start and target nodes

Hi there, I hope some of you can help with an issue I an having . I want to select a random starting node with maps to a random target node through a single specific relationship. I tried the following query but the target node is not random and whe...

Resolved! Expand nodes around a path of nodes

Hi All, Suppose I have this path in my graph, and want to return this path. I have written the below query but if I write this I am not getting the Capacity Node. I want to expand the node connected to the Production Node. match p=(:WIPCapacity)-[:...

3X_0_8_08d9a1ff2018a6ded17742fc796d3e36a276e8d5.png

Not able to authenticate neo4j browser on gcp

Getting the following error while connecting to neo4j browser: ServiceUnavailable: WebSocket connection failure. Due to security constraints in your web browser, the reason for the failure is not available to this Neo4j Driver. Please use your browse...

3X_d_8_d84a4a6b33450fac635f52a439628990f3cd4e7a.png

How to filter only on nodes with edges

I have a DSL for querying the graph which looks like this: Graph.query(country: { value: 'Italy' , value: 'Spain', value: 'Greece' }, movie: { title: 'Matrix' }) and produces this cypher query, which works fine: MATCH (m:Movie)<-[:ACTED_IN]-(a:Actor)...

Limit on paths

It seems that limit is not enforced on paths. My query: match p=(n{name:'Richard Harris'})-[*]-(m{name:'Wil Wheaton'}) return p limit 1 I'm testing on the sample Movie DBMS (v. 4.3.3) in Neo4j Desktop. How should I enforce the limit on the number of...