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
  • 924 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
  • 1164 Views
  • 1 replies
  • 1 kudos

Best way to represent bidirectional relationships

Hi there I'm just starting out to do a bit more with neo4j and I try to represent a truly bi-directional realtionship. I know neo4j cannot store un-directional relationships ((a)--(b)), which would be an option. And I didn't manage to create bidirect...

halloleo by Node Link
  • 930 Views
  • 2 replies
  • 0 kudos

Protocol breach detected in bolt session 'bolt-760'

I am facing this particular set of exceptions after the program runs for a while. There is nothing logically wrong in the query, but after inserting a few hundred, this error pops up ,and there after all the queries continue to fail. I am using the H...

tinqnit by Node Link
  • 760 Views
  • 2 replies
  • 0 kudos

Turn rows of join in columns?

Background I want to create a set (rows) of single users with columns from values from child nodes. But I am not able to understand how to aggregate this (with subqueries?). Data - (:UsedMeasure) / (:U...

BairDev by Node Clone
  • 744 Views
  • 2 replies
  • 0 kudos

Neo4j ETL import data from mariaDB to neo4j

When I mapped and imported data from mariaDB to neo4j, I received following exception, hope someone can point me to where I should look for solution. Thanks. Data imported with errors. Below the list of errors.For exception RuntimeException we got t...

jzhou002 by Node Link
  • 477 Views
  • 2 replies
  • 0 kudos

Create a path of nodes from a list of strings

Hello, Using Cypher language only, based on a liste of strings e.g [ "A", "B", "C" ], I want to create the following path: ( n1:Test {ps: "A"}) -[:NEXT]-> (n2:Test {ps: "B"}) -[:NEXT]-> (n3:Test {ps:"C"}) The list would be of any length. Nodes and...

Resolved! Querying for prefix in a list

In the following example: CREATE (:A)-[:AB{list:['k1:v1', 'k2:v2']}]->(:B) CREATE (:A)-[:AB{list:['k2:v2']}]->(:B) To find path with AB.list having an element k1:v1, I can use the following query: WITH 'k1:v1' AS query MATCH path = (:A)-[ab:AB]->(:B...

deepak by Node Clone
  • 510 Views
  • 1 replies
  • 0 kudos

How to insert a custom configMap in Core Members

Hello, I deployed Neo4j 3.5 in a kubernetes cluster by using an helm chart. I would like to enter a configuration for core cluster members using a custom configMap. Here is my YAML file for helm: acceptLicenseAgreement: "yes" neo4jPassword: "..." im...