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

Resolved! The Amazing Shrinking Data Footprint on Disk

I am trying to understand some curious behavior in Neo4j that is desirable but perplexing. On occasion, the size of the stored data on disk seems to shrink? In the most recent example, I was uploading more nodes/edges via CSV bulk load. During the pr...

Query Tuning Optional Match

Hi, I am doing my work title for the university and I have found one problem. I need optimize the following query: // Q22. International dialog PROFILE MATCH (country1:Country {name: 'Mexico'})<-[:IS_PART_OF]-(city1:City)<-[:IS_LOCATED_IN]-(person1:P...

2X_3_30578dfc99824bc7dc9d7fe629d7a0fe0e4eb7f1.png

Resolved! Fulltext Index missing numeric properties

Hi, I have created a fulltext index like so: CALL db.index.fulltext.createNodeIndex("PersonIndex",["Person"],["age"]) the "age" is a numeric property. query on this index not worked. If we consider age as a string property, then range searching like...

Looking for a tool like Neo4j Browser

Hi all, I am new to this community, so I am sorry if this topic has been discussed in the past... I am looking for a tool that presents a graph like Neo4j browser but with the ability to add events on nodes and edges (have a drop-down menu that I can...

Resolved! Create a virtual relationship after an OPTIONAL MATCH

I am trying to run a query that conditionally creates a virtual relationship upon an optional match. A simplified version of the query is as follows: MATCH (v:Venue) OPTIONAL MATCH (v)-[:HOSTS_EVENT]->(e:Event)-[:IN_SERIES]->(s:Series) WITH v, s CALL...

jon1 by Node
  • 2208 Views
  • 3 replies
  • 5 kudos

Resolved! How to pass query parameters when creating named graphs

I am calling algo.graph.load(node-query, relationship-query, {graph: 'cypher}) where node-query and relationship-query are both parameterized. What is the proper syntax for passing the query parameters in this case? Is it possible? By way of illustra...

hbowers by Node Link
  • 1309 Views
  • 2 replies
  • 3 kudos

Resolved! Find max duration in each group

I want to find the max duration in different attribute. This is my data format. (:task{WAFERID, duration, FORMLOC, TOLOC}) WAFERIDdurationFROMLOCTOLOCA110L1L2A115L2L3A112L3L4B19L1L2B112L2L3B115L3L4C19L1L2C112L2L3C115L3L4 Each node records the work...

Neo4j JMX Settings

It appears now with 4.0.0 Enterprise and Java 11 we can bind JMX to a particular address instead of broadcasting it to the world using these settings: # Remote JMX monitoring, uncomment and adjust the following lines as needed. Absolute paths to jmx....

Admin Import failing for neo4j v4.0

Hi, I am trying to import data into neo4j database (4.0) since it supports multiple databases but it keeps failing. Below are the details for what I have done: Using neo4j 4.0 docker image from here: https://hub.docker.com/_/neo4j After the databas...