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

How to dynamically settings relationships weight

in my neo4j database, there are many kinds of relationships between people and vehicles, and each relationship has a weight value: Driving relationship (weight: 0.2)Own relationship (weight: 10)Ride relationship (weight: 0.1) Relationship attribut...

Best practices for neo4j database documentation

What is the guidance on how build documentation about the content and structure within a graph database? And/Or, are there standard templates that people use? I want to develop documentation to... Serve as a reference to help me keep things straightO...

b_d_t by Node
  • 367 Views
  • 0 replies
  • 0 kudos

Neo4j query log(Client read time calculus)

Good morning. Currently, I'm trying to monitor a Neo4j v4.3.1 Enterprise Edition database. {"time":"2021-10-12 09:18:15.671+0000","level":"INFO","event":"success","type":"query","elapsedTimeMs":108,"planning":60,"cpu":109,"waiting":0,"allocatedBytes"...

3X_c_6_c60dd7f3c77212ec4516874d6252d56963bb9362.png

"Save as Project file"

Hi, I imported a shapefile using the command "call spatial.importShapefile()", when I tried to save the file as a project file, I got this error " A network error has occurred". I am not sure what is the problem exactly and how I can fix it? Also, It...

Long upgrade path 2.1.x -> 3.5

Recently inherited a 2.1.4 install of neo and looking to upgrade to latest greatest. It appears that I need to move it stepwise through the 2.x versions before I can get to 3.x though. Have taken a copy of the existing "graph.db" folder and am trying...

Clustering in Neo4j?

If there is any clustering algorithm in neo4j like we have in Python (Eg K-Means, DBSCAN). Is is possible to do clustering only with Neo4j without using any other language, if so can you please share any reference guide link. Thanks in advance.

Recovering / repairing Desktop and DBMSS on Mac?

Neo4j Desktop 1.4.12 on Mac Catalina, an instance where I am developing an application and its DB. I started encountering some Java heap errors, inability to stop the DBMS. I restored from Time Machine a copy of ~/Library/Application Support/Neo4j De...

Question of Approximate Nearest Neighbour algorithm

Dear all, I am trying out the Approximate Nearest Neighbour algorithm provided by Graph Data Science Library and I have a question regarding the given example. Was any projection created in the example? And if not, why there was no graph projection c...

yuxin16 by Node Clone
  • 349 Views
  • 0 replies
  • 0 kudos

Resolved! Conditional iterative creation of relationships

I need to iteratively create relationships between nodes based on the nodes' properties, which change during the loop. I am trying to go about it like this: MATCH (A), (B) WHERE NOT (A)-[:BOND]-(B) AND A<>B FOREACH (a in A | FOREACH (b in...