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
  • 983 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
  • 1204 Views
  • 1 replies
  • 1 kudos

Dbms.security.auth_enabled=false

Good evening, I installed the 3.4.8 community version and upgraded the databas from 3.4.7. The Bowser in 3.4.7 with dbms.security.auth_enabled=false in neo4j.conf gives me access to the database, but not with 3.4.8. I receive a notification that I'm ...

Merge of few thousand relations is very slow

Dear all, I try to get better performance with csv import/merge of relations. I have a database created with neo4j-import from CSV files, and on a daily basis there will be some updates to the CSV files. I can easily import the changes using merge wi...

norbert by Node Link
  • 4826 Views
  • 4 replies
  • 1 kudos

Resolved! Error in graph-algorithms-algo-3.4.7

Hi, I've been trying to get the algo.pagerank.stream to work on my data, but from what I understand there seem to be a bug in how the function returns nodeId's Following the examples provided for the library, here is my simple query call algo.pageRan...

2X_8_8f34a08e5a9a6b310b3e14159873156928dfd756.png
slygren by Node Clone
  • 2693 Views
  • 9 replies
  • 0 kudos

Resolved! Neo4j Fails to Start - suddenly - tons of data

ubuntu@ip-10-1-32-39:~$ journalctl -u neo4j -f -- Logs begin at Tue 2018-10-09 13:47:02 UTC. -- Oct 09 14:11:42 ip-10-1-32-39 neo4j[11014]: plugins: /var/lib/neo4j/plugins Oct 09 14:11:42 ip-10-1-32-39 neo4j[11014]: import: /var/lib/ne...

Graph algorithms Louvain Issue

Previously working Louvain queries no longer work on new graph algo version 3.4.7.0 (Using Neo4j version 3.4.0.1). Here is the error: Neo.ClientError.Statement.SyntaxError: Unknown procedure output: community (line 7, column 14 (offset: 257)) "YIELD ...

Resolved! Cypher: `WITH *` is legit?

Hello All! I am looking for documentation that confirms that WITH * is a supported construct I can’t find it on: https://neo4j.com/docs/developer-manual/current/cypher/clauses/with/ ...but it came up in an example on Slack a few days ago, and it see...

Resolved! Cartesian product from array

Hi! I have an array of unknown length that I want to create the cartesian product for. In the example I have three arrays with 3, 1 and 2 elements each. So I use three UNWINDs, but can this be done for X number of elements in the array with one state...

Draw graph after apoc.refactor.to call

Guys, I have the following query: MATCH (c:City {normalized_name: pLiveAddrCity}), (:TenantMAS {name: pTenantName})<-[:as_seen_by]-(la:LocalAgent {id: pAgentId}) MERGE (new_addr:Address { street_name: pLiveAddrStreetName, number: ...