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

Returning extra null line

I am returning an extra line whereby the result is null and I dont know what is causing it. I have attached my query and result below. Thanks in advance. CALL db.index.fulltext.queryNodes('livesearch', '*t*') YIELD node OPTIONAL MATCH (group:Group)-[...

2X_8_80acd4eaa003532b2645eaf2aef63fbe54ffa594.png

Resolved! Batch CREATE and MERGE statements

I am writing a tool in python using the neo4j (1.7.6) module that creates cypher CREATE and MERGE statements for data based on a set of rules. There is the potential for hundreds of thousands of statements to be generated and I am wondering what is t...

Resolved! How to boost Lucene queries with field values?

Hello, I am curious how to boost full-text queries with document (node) values. We do get a field from our source systems that contain a weight that we shall use as multiplicator. Lucene allows to influence the scores via boosting. This could be done...

2X_0_05dae1acc9578b56993d55d22e9a46d9a5160755.jpeg
semerzo by Node Link
  • 3403 Views
  • 7 replies
  • 3 kudos

Import data from RedisGraph through Cypher endpoint

I have a RedishGraph database with an endpoint that takes Cypher queries. I would like to export all the data from that RedishGraph and import it to a local Neo4j instance to make use of the dashboard and APOC subroutines. Are there any shortcut ways...

aerugo by Node Link
  • 950 Views
  • 2 replies
  • 0 kudos

Backup whole graph with apoc export procedure

I want to periodically backup my whole graph but I'm not on enterprise edition. I saw that neo4j-admin has the dump command which requires the database to stop. That's not really useful in my case because I need multiple backups a day and the applica...

Resolved! Neo4j on ubuntu vps

I tried following the steps from here, which are linked to from the "hosting neo4j in the cloud" page. On a clean droplet, running the 6 steps listed on the guide give the exception Store and its lock file has been locked by another process: /var/lib...

li3zhang by Node Link
  • 1169 Views
  • 6 replies
  • 1 kudos

Cypher query please help!

Hello! I am new to NEO4j and trying to practice Cypher based on my Arrows tool design (Screenshot attached) and having a hard time returning my target output.. How should I query the questions below? Any help would be really appreciated. Thanks in ad...

2X_b_b32e4ae16c305af97882bdaf4ac3f86061be72ef.png
plee by Node Clone
  • 319 Views
  • 1 replies
  • 0 kudos

Resolved! Slowness in graph retrieval

Hi, I am using the Neo4j community edition for my POC and I have configured Neo4J in HA. There are two high-end servers one of which is acting as master and another one as slave. I have a data simulator that is pumping data continuously to Kafka and ...

Neo4J Desktop 1.2.9 Installation Aborted

I am attempting to update my desktop install to 1.2.9 (I have removed previous version) on Windows 10 when I run the installer I get an 'Installation Aborted' message and the helpful information 'setup was not completed sucessfully' Are there install...

taffyb by Node Clone
  • 983 Views
  • 3 replies
  • 0 kudos

Match specific relationship types in path

Hi n4j folks, I have a question regarding cypher syntax: I want to match a path and exclude a certain relationship path. I tried it with: match p=(:WProcedure) - [*1..50] -> (:WTask) where all(rel in relationships(p) WHERE type(rel) <> "CONSISTS_OF")...