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
  • 943 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
  • 1183 Views
  • 1 replies
  • 1 kudos

Neo4/Cypher - Matchs Statistics

I need to quantify how many nodes and edges are traversed while running a MATCH. For example, I am using: MATCH cam = shortestPath ((from: Person) - [r1: personTOfilme |: movieTO Person *] -> (to: Person)) WHERE (from.pes_name = 'Fernanda Torres') AN...

Data modeling tool for Neo4j

There is a visual software to design your Neo4j graph schema. Take a look at Hackolade. It dynamically generates Cypher code as you create the model with a few mouse clicks. It also performs reverse-engineering of existing instances, so you can enr...

2X_0_0c3b210f3fc9267ad251f54c93982ff3c714d4dc.jpeg
pascal by Node
  • 3205 Views
  • 0 replies
  • 4 kudos

Any way to persist manual layout

I thought there was a discussion about this here or in StackOverflow, but cannot find one. For small-to-medium graphs that I wish to document and share, sometimes I drag nodes into a clear and pleasing arrangement. That can take some time... The next...

Category configuration option

Starting to work my way through configuring perspectives in Bloom. When configuring a category in a perspective there is an option to Exclude Labels. I cannot figure out what this is meant for. Does anyone have any tips? I thought it might allow the ...

Skip Error Records while loading data in Neo4J

I am trying to load data into Neo4j using apoc.load.json from a file containing streaming JSONs (sequence of JSONs separated by new line character). I am able to load the data pretty quickly using apoc.periodic.iterate and apoc.load.json together. Th...

Should I utilize Neo4j?

I am doing a small graphical webcrawler web app assignment where the user inputs the starting page, chooses depth or breadth crawl and inputs the crawl limit. I want the results to return to the page inside of a container as a graph. I was thinking...

Syntax Error

Syntax Error at ORDER BY clause -> https://neo4j.com/docs/graph-algorithms/current/algorithms/degree-centrality/#algorithms-degree-syntax 5.7.4. Weighted Degree Centrality algorithm sample CALL algo.degree.stream("User", "FOLLOWS", {direction: "incom...

Neo4j query really slow

So, I am running a local neo4j database which has 5000 nodes, 5000 relationships and is of 120MB in size. I am running a query: MATCH p=(:Tweet)-[:REPLIED_TO|RETWEETED_FROM*]->(:Tweet)-[:REPLIED_TO|RETWEETED_FROM]->(:Tweet {type: 'TWEET'}) RETURN p L...

Dragotic by Node Link
  • 5835 Views
  • 4 replies
  • 1 kudos

Path in neo4j doesn't display in neovis.js

Hi, My node displays - v1/claims/intimation as its display name in Neo4j and it has properties - name: v1/claims/intimation and value: v1/claims/intimation . However, it doesn't display the same name in Neovis. Instead it displays its name as "Path...

2X_2_2365248c8d4db39a92ea9ee3819a52530714dd9a.png 2X_f_fd1d7d5a6d843bd7427798113e3469b39b99f21f.png
sucheta by Graph Buddy
  • 886 Views
  • 0 replies
  • 0 kudos

Merge Relationships with node ids efficiently

I use this query to relate some nodes between other nodes that the user has. The problem I have is that when a lot of relationships are created, it takes longer and longer. I'm trying to find the bottleneck here but I'm missing why or what. If you ca...