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
  • 922 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
  • 1164 Views
  • 1 replies
  • 1 kudos

Parse json with Cypher

Hi Everyone, I have a json structure like below. 'ha': StringType(), 'confirmations': LongType(), 'previousha': StringType(), 'nextha': StringType(), 'ax': [{ 'axid': StringType(), 'ha': StringType(), 'ex': String...

12kunal34 by Graph Fellow
  • 1103 Views
  • 1 replies
  • 0 kudos

Simple count query taking too long to execute

I have a db with 20 million nodes and 50 million edges. I'm trying to execute a query of the form: Match (u:User)-[:MENTIONED]->(:Keyword {keyword:"baseball"}) Where u.active="True" Return Count(u) I have around 10 million users and only 10 keyword...

Rogie by Node Link
  • 1544 Views
  • 5 replies
  • 0 kudos

Slowdown while merging 200k relationships

I'm running neo4j 3.5.14 from the container at https://hub.docker.com/_/neo4j I'm importing around 200k relationships. The first 100k are great, importing at 25k-30k relationships/second. After the first 100k, there are a couple periods of slowdown...

sean by Node
  • 1232 Views
  • 5 replies
  • 1 kudos

Azure - neo4j vm - cannot connect

I'm using the Azure Marketplace Neo4j Enterprise VM module - Version 3.5. The VM is running on a static IP, but I cannot connect to 7474 or 7687. The connections are refused. I'd expect out of the box that this package would allow direct remote conne...

Concatenate Chain of nodes

I am quite amateur using Neo4j, and I am not sure if the following doubt can be possible or not. I am importing data from a csv in which I have different messages as follows: From;To;Tel_from;Tel_to; Marc;Louis;454423;86849349; Marta;Mickel;1343;3354...

Graphaware updates to v4 roadmap

Hi to the @GraphAware team Just wondering if there is any roadmap for releasing v4 compatible versions of the UUID and neo4j-to-elasticsearch plugins? Just looking to test out v4 and see if there is any value in upgrading the database on my project....

Algorithm filtered on relationship key

Hi, This is my starting point on my patent database and it works as expected CALL algo.betweenness.stream("patent", "Reads_On") YIELD nodeId, centrality RETURN algo.getNodeById(nodeId).PatNum AS patnum, centrality ORDER BY centrality DESC Now I woul...