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
  • 922 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

Apoc.uuid.install in Kubernetes

I'm running a Neo4j instance (version 4.2.2) in a pod within a Kubernetes cluster, in standalone mode. The server starts, I can create, find and update nodes and relationships, however, when trying to install a UUID using CALL apoc.uuid.install("Asse...

Is possible to use Neo4j Cloud(AuraDB) in China?

Hello, I notice graph database for sometimes. Starting from Dgraph, and now Neo4j. Is possible to use Neo4j Cloud(AuraDB) in China? Considering of Great Fire Wall of China maybe block the connection. Has any solution? I don't consider self-hosted if ...

Resolved! Find relationship in the path by type or property

Hello, I have the following path: (a:Node)-[REL1]->(b:Node)-[REL1]->(c:Node)-[REL2]-(d:Node)-[REL1]->(e:Node)-[REL2]->(f:Node) Now, REL1 and REL2 can be modelled either as 2 relationship types that can COEXIST between 2 nodes or the same relationshi...

magaton by Node Link
  • 933 Views
  • 5 replies
  • 0 kudos

Resolved! Return all nodes properties

Hi, I'm an early begginer in Neo4j and i need some help with the return syntax. I want to return all nodes properties but i'm not able to get them without null values and repeated nodes. This is how i create it. CREATE (a: Formulario {Nombre:'PS2115'...

3X_e_3_e32a69496553f7a29a4a6087a85a4015b22d29a8.png 3X_0_8_08e081b2111fbc26131f4eec4286a64c1126fc59.png

Non Matching Records from CSV / Neo: Using Load CSV

Team, I am trying to load the data from csv. I just want to right now list the non matching records. one which are not there in neo4j but are there in csvthe one which are there in neo but not there in the CSV. Could there be a simple query? Query be...

Kailash by Graph Buddy
  • 777 Views
  • 3 replies
  • 0 kudos

Validation for the each node in same path

I want to convert one gremlin query which is similar to below one. In repeat statement, it will traverse till EndNode with validating each InNode1 in that path with given conditions. If any InNode1 in that path doesnt satisfy then result will be Zer...

Cypher Query in not traversing backwards

I am writing one cypher query like below but not getting the results. I want to find the last node in the path and also need one node before that final node. MATCH (startNode) - [: FOLLOW | REVIEW | RECOMMENDED*] - (lastNode) <- [:RECOMMENDED] - (...