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

Resolved! Graph traversal using node property value as weight

Hi I have a cloud asset network with assets information coded in the form of the properties. The graph reflects the topology of a cloud environment and the relationships and nodes both have properties. I am trying to find a traversal path between a n...

How to search according to relationship

Hi,  I have a data like this in csv file:fn,ln,city A,F,C B,F,D C,F,E H,Z,E   And i created graph like this: LOAD CSV WITH HEADERS FROM "file:///test_data1.csv" as col MERGE (FN:Firstname{name:col.`fn`}) MERGE (LN:Lastname{name:col.`ln`}) MERGE (CITY...

concurrency in random walk

Hello, I'm currently working on running the random walk algorithm in parallel through python drivers. However, I have not found a way to make it. First, I tried the multiprocessing tool in python and it turned out that it could not be used with pytho...

yliu34 by Node
  • 579 Views
  • 3 replies
  • 0 kudos

Cypher-shell certificates

With Bolt configured like this cypher-shell with Neo4j 4.0 seems to not like the self-signed certificates anymore: ./bin/cypher-shell --database system -u neo4j -p $secret --encryption true --debug org.neo4j.driver.exceptions.SecurityException: Faile...

UNWIND Query does not work in SDN 6

The below query works fine in SDN 5. But in SDN 6 they throw errors.@Query("UNWIND {0} AS row "+ "MATCH (activity:Activity{guid:row.actGuid}), (actor:Actor{guid:row.ownerGuid})"+ "CREATE (activity)<-[:OWNER_OF]-(actor)"+ "RETURN activity.guid")public...

Resolved! Create relationship based on another column

Hi all, I am a beginner in Cypher and would like to seek for some help here. I have data loaded from CSV as below: AccountID TransactionID FirstTransactionID AID1 TID1 Null AID1 TID2 Null AID1 TID3 TID3 AID1 TID4 Null From the data ab...

Resolved! Help on creating repeating time-sequenced pattern

I'm using Neo4J to find instances of financial crime at the bank where i work. We have our data loaded with nodes being our clients and edges being transactions between those clients (with direction). Certain clients have an attribute "is_high_risk" ...

Create node property from python dictionary

Hie,  I have a python dictionary, temp = {"Height":168, "Weight":112, "id":10}. I am trying to create node label "Person". Can I use the dict as the properties for the node? As "match (n:person{temp}) return n" this is throwing an error, I have connc...