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
  • 988 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
  • 1205 Views
  • 1 replies
  • 1 kudos

Resolved! Adapt query to return correct results

I have the bellow query. Here i collect all rows and skills, unwind rows as row and check that candidates' skills are in all skills i want, i check that every skill related to this candidate is on the list of ALL skills i want. I need to change someh...

Resolved! Neo4j Causal Cluster Backup & Restore

Reference Documentation: Back up and restore a database in Causal Cluster - Operations Manual We performed the backup of Neo4j Causal Cluster (Implemented on 3 AWS EC2 Instances) on one of the nodes in the Cluster referring to the above mentioned doc...

How to chain UNWIND clauses

I am attempting to use two separate lists to create nodes/relationships in cypher. My current solution is: MERGE (t:Test) WITH t UNWIND ["a","b"] AS name // first list MERGE (t)-[:FOO_REL]->(a:Foo { name: name }) WITH DISTINCT t ...

Confuse about Node Properties

Hi, I'm kinda confuse about setting node properties. I've seen 2 ways of doing that on the internet and i don't know the difference. LOAD CSV WITH HEADERS FROM 'file:///file.csv' AS row CREATE (n:Customer {a: row.a, b: row.b, c: row.c}) LOAD CSV ...

Add description or comment to Labels/Relationships

Is there a way to add a description to the Node Labels and Relationships, like adding a comment to the Postgres table columns comment on column session_log.userid is 'The user ID'; comment on column session_log.phonenumber is 'The phone number includ...

somasays by Node Link
  • 518 Views
  • 1 replies
  • 0 kudos

Error in Custom Bloom Query

Hi, Goal is to create a custom query within Bloom that set some property values which I use to resize the display size of the nodes. The custom search phrase uses this and I have tested it in browser with fixed values instead of the replacement value...