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
  • 910 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
  • 1154 Views
  • 1 replies
  • 1 kudos

Escaping regex metacharacters in Cypher

Is there a way to escape regex metacharacters (. + * ? etc) in a Cypher query? I want to do something like this: MATCH (n), (m) WHERE n.name =~ '.*\b' + m.name + '\b.*' However there will be a problem if m.name happens to contain metacharacters, so...

Resolved! Merge: Bounding Relationships

How should I bound relationships in merge? For example, the following query works fine. MERGE (dummy{name:'dummy'})-[r0:PARENT_OF]->(s0) MERGE (dummy)-[:PARENT_OF]->(s0)-[:PARENT_OF]->(s1) But it adds two relationships between dummy and s0. When I a...

Help with query

Hi - I would like to return a node property (key and value) after I search for a term across all properties, I don’t know in which property I will find the term and I would like to do something with it after. Here’s where I got so far: match (n:demog...

fred by Node Link
  • 677 Views
  • 1 replies
  • 0 kudos

Resolved! Incremental [Backup] Restore

Summary: Backup and Restore works fine as per documentation, using Incremental Backup how to I revert to say 2 save-point behind time? Incremental Backup in NEO4J is well documented. While only simple restore to last recovery point is documented at h...

2X_2_238271568ade1ad9381e0aec7344e22957fb53d0.jpeg
sganesh by Node
  • 1858 Views
  • 2 replies
  • 0 kudos

Will the index be used on the generated columns?

Will the index be used on the generated columns? if not, how can I request for this feature? It exists is all RDBMS. For example: say I have CREATE INDEX ON :Label1(some_column) and CREATE INDEX ON :Label2(some_other_column) say in my WHERE clause I ...

kanth909 by Node Clone
  • 1011 Views
  • 3 replies
  • 0 kudos

Checking Lists Within Lists

I'm pretty sure that I've done this before, but my internet brain is not being useful today. I need to do something like this: WITH ("a","b","c") AS master_list MATCH (thing:Thing {ID: "test"})-[:HAS]->(anotherthing:Thing) WITH master_list, thing, co...

dbeaumon by Node Link
  • 602 Views
  • 1 replies
  • 0 kudos

Lowest impact way of finding duplicate nodes

I am trying to return details of a low number of a single type of duplicated node in a dataset of 10,000,000+ nodes. The node has 3 labels which can be used to cut the dataset to about 25% of the overall dataset. The node has 2 properties, one of wh...