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
  • 976 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
  • 1199 Views
  • 1 replies
  • 1 kudos

Aura, GraphQl and Grandstack

I build a Grandstack app locally on my desktop connecting to a Neo4j database running locally as well. In order to migrate to the cloud I started looking into Aura and have my database deployed into free and professional tier. Keeping it simple I tho...

Understanding Neo4j Query Plan Caching

This article is based on the behavior of Neo4j 2.3.2. Query plan caching is governed by three parameters, as defined in the conf/neo4j.properties file, which are detailed here. The three parameters which govern whether a Cypher statement is planned/r...

Resolved! Problem with AsInteger

I'm new to Neo4j, so apologies if this is very basic... I am loading in my data, which contains 4 columns (Category, User1, User2, Weight) - weight is an integer, as follows: > LOAD CSV WITH HEADERS FROM 'file:///file.csv' AS row > WITH toInteger(row...

How to guarantee Label order on new nodes

For our custom cypher procedures we would have a significant boon in performance if the order of Labels on Nodes would be guaranteed. For example, lets say we have the following labels: Animal, Cat, Dog We would want the most specific label to occur ...

Unable to setup Neo4j desktop on Windows 10

I hae download the Neo4j desktop and installed in my Windows 10. After installing, when I launched the desktop, it ask to choose the path for the stored application data. After it stays there and does not proceed on further even if I have choosen the...

Out of memory error on delete query

neo4j version 3.5.1, running on linux centos 7calling from chrome browser I have a db with about 730000000 nodes. I need to delete some orphaned node trees. I've written a query to locate the top of the tree, this returns about 5500000 nodes, and del...

shai by Node Link
  • 1381 Views
  • 7 replies
  • 1 kudos

An approach to parsing the query.log

When one has enabled query.log through Neo4j Enterprise parameter dbms.logs.query.enabled the included bash shell script can be used to quickly parse the log and identify the top 10 most expensive queries based upon total execution time and if one ha...

How to write a cypher query

hello, this is my first time using Neo4J, and I have been asked to 'write A Cypher query of my choice -with direction- that traverses relationship of my choice to demonstrate a result.' how can I do that? my graph uploaded

3X_0_c_0cd8fd997de7d19dc591743909f92f259a6706cc.png

Neo4j Database Concepts

Hi I have the following questions: What's Neo4j max database connection? Based on Config.MaxConnectionPoolSize, it seems that you can have infinite connections. Is that correct? Is there a formula to determine how many connections should be set? Also...

2X_5_5447ee7a7ac2b7bc96625a2eee9be933211d188d.png

How to use dictionary parameters in Python Neo4J

I am using py2neo to run a Cypher query in Python. Currently, I am passing the values of $user_id and $name. query = "MATCH (user:User{id:$user_id, name: $name}) MATCH (user)-[rout]->() WITH user, collect(DISTINCT {relationship: type(rout), node: end...