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

Awful experience with Google Kubernetes

Hi I recently tried to install Neo4j on the google kubernetes engine Almost at the end I got these two errors in the google cloud UI on the cluster line Can’t scale down a node because there’s no place to move its PodsPod is blocking scale down becau...

Connect to Neo4j driver Aura issue

I have an issue in connecting to Neo4j driver using "laudis/neo4j-php-client": "^2.4.2" I'm using Neo4j Aura DB and the previous version "laudis/neo4j-php-client": "^2.3.3" was working good and after upgrading to the latest version I got this error ...

3X_4_e_4eab53a6ee5c1d5f907cdd79654a6b3d854b0b2e.png
aerfan by Node Link
  • 773 Views
  • 4 replies
  • 0 kudos

Dgs.fastrp.write returns "Failed to invoke procedure `gds.fastRP.write`: Caused by: java.lang.IllegalArgumentException: UnionProperties must all have the same type, but found [LONG, DOUBLE, DOUBLE, DOUBLE]" error

Hi everyone, I am working on a large graph consisting of different type of labels, and these labels have their own properties. CALL gds.graph.create( 'derin', { Transaction: { label: 'Transaction', properties: {legacy_customer: {defaultValue: 0} , t...

Resolved! Linking nodes recursively with arbitrarily deep paths

Hi community, we need to link a bunch of nodes connected in one way with arbitrarily deep paths to a :Module node using :includes relations. Therefore we're using patterns like: match path=(:System:Workflow:Application)-[:raises]->(:System:Workflow:E...

All shortest paths between a set of nodes

Consider a number of arbitrary nodes, A,B,C,D,E,F,..... I wish to return all of the shortest paths between these nodes. The nodes may have many edges between them, but anticipate a maximum of 4. The graph is complex and non hierarchical (if this ma...

Resolved! Generate test data

Is there some simple way to generate random data when playing with Neo4j browser, please? In other databases I can do something like this: FOR i IN 1..1000 INSERT { name: CONCAT("test", i), value: 100 + FLOOR(RAND() * (150 - 100 + 1)) } I...

Resolved! Remove duplicate links between nodes

For instance there are like 500 nodes connected to a node "X", the node "X" is connected to node "Y", between node "X" and "Y" there are 500 strings/relationship lines. I know the reason it occurs, but can I have one string/relationship line instead ...

Relationship unique key required

안녕하세요. 질문이 있습니다. 노드에는 nodekey가 있듯이, relationship에는 유니크 키가 없나요? Relationship에도 유니크 키를 줄 수 있다고 생각하는데요. [Google translation] Hello. I have a question. Just as nodes have nodekey, relationships don't have unique keys? I think you can give a unique key t...

Resolved! Call custom procedure ON CREATE

I am trying to merge a node, and then pass it to a custom procedure - but only the first time it is created. However, this doesn't work: MERGE (n:Any {id:1}) ON CREATE WITH n CALL my.procedure(n) Is there an alternative way to do this?