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
  • 855 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
  • 1118 Views
  • 1 replies
  • 1 kudos

Graph Search with path pruning

Hi! I'm trying to solve a path-finding problem between a root_node and a target_type_id-nodes. There can be multiple paths from the root_node to the target_type_id-nodes, but I know a potential max_depth. Each node in the graph has 3 properties, type...

Resolved! Two questions about date conversion in cypher

I have two questions about date conversion in cypher. First, There is SQL in Oracle : SELECT TO_CHAR(SYSDATE, 'D') FROM DUAL; The SQL returns a number from 1 (sun) to 7 (sat) Does Neo4j have a cypher function to replace it? Second If the arguemnts is...

How to take dump of all the database?

we are using this command to take dump of a single database: sudo ./bin/neo4j-admin dump --database=demo.db --to=/mnt/backup is there any way to specify to take dump of all database in a single command? neo4j enterprise edition: v4.4.4

Excel file with 3-row header?

I have an Excel file I want to ingest use APOC. The file unfortunately has a 3-row header, although the actual header info I'm looking for as a header starts on row 3. Is there a way to tell APOC I have a head but to skip the first 2 rows of it?

mbandor by Graph Voyager
  • 404 Views
  • 3 replies
  • 0 kudos

Enabling GC Logging

If you are having issues with Garbage Collection (too many pauses, too long of a pause, pauses causing cluster re-election, etc), you should look at enabling GC logging. Keep in mind the following regarding GC logging: GC log files are cleared out w...

AND/OR trees queries in Neo4j

I'm representing AND/OR trees in Neo4j as in the figure below (with AND and OR nodes and corresponding relationships). The tree's leaves are properties representing boolean values (green = true, red = false). Now, I'm looking for an algorithm (or cyp...

3X_b_7_b779be4d13fbcde34478846d855fde7e79ad6f41.jpeg
fminna by Node
  • 351 Views
  • 1 replies
  • 0 kudos

Define "logical" property for entities

Hi all, I would like to know if and how I can solve a problem. Suppose to have a node (or a relationship) and you want to add a "virtual" property on it instead of persist it on db. To keep it simple suppose you have a node n with two numerical prope...

Andrea by Node
  • 597 Views
  • 6 replies
  • 1 kudos

Resolved! Searching for all nodes with same property of Match

I am trying to find ALL other Customers who purchased products with ALL the same TYPE properties as C. MATCH (c:customer{customer_id: '00006413d8573cd20ed7128e53b7b13819fe5cfc2d801fe7fc0f26dd8d65a85a'})-[]->(p:product) WITH c, COLLECT(DISTINCT p.type...

How to import an rdf file to neo4j

Iam new to neo4j .Iam in the learning stage.Can you please guide me how to import an rdf file to neo4j .I have already gone through the manual of importing rdf and importing ontologies .Iam importing the rdf files from dbpedia and Iam giving the URL ...