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

Resolved! How to merge two columns from csv into one node?

I want to be able to create one node from two different columns in a CSV when importing the data. Column 1: AE19 Column 2: 1202 Resulting node: AE19.1202 Is there a cypher, neo4j, or apoc command that can do this when loading the data in from a CSV?

Datadog integration with Neo4j 4.0.1

I've built and installed the Datadog integration for Neo4j following this guide: Datadog Infrastructure and Application Monitoring Getting Started with Datadog Datadog, the leading service for cloud-scale monitoring. ...

2X_a_af0c91c769c9d091995c72b606ab6465b02d2e47.png 2X_b_b3845e832b52d3c388403d3d065ff18787aec630.png
exide by Node
  • 1237 Views
  • 1 replies
  • 0 kudos

Addressing multi-databases from Java

Dear community, I started having a go at multi-databases. I get how you can create and switch between databases in the browser by e.g. :use system create database newDatabase :use newDatabase Is it also possible to achieve the same using a java prog...

Copy a Node and Relationship to new one

Hi Team, I have a person nodes with many records in it and its relationship created. I have a requirement where i need to copy person node to personbkup node and copy the relationship. Match (p:person)<-[ac: ACCESSED_BY]-( b: Block) here person and B...

Kailash by Graph Buddy
  • 885 Views
  • 2 replies
  • 0 kudos

Trouble connecting to neo4j V4 via python

I have an issue that may be related to the question above. I've downloaded neo4j V4 but when I run the following lines of code in Python 3: from neo4j import GraphDatabase import request uri = "bolt://localhost:7687/" driver = GraphDatabase.driver(u...

How to filter keys in unwind clause

Hi, I am working with a 3.3.5 community edition of Neo4j. I would like to display one property out of many in a node. The following query displays all the properties (tagline, title, released) of the node Movie. match(p:Movie) WHERE p.released=2004 ...