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
  • 855 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
  • 1118 Views
  • 1 replies
  • 1 kudos

Resolved! RegEx in Cypher

Regex patterns in Cypher do not appear to implement some PCRE features like lookahead or lookbehind. I am trying a pattern that works in www.regex101.com but not in cypher: WITH [x in keys(row) WHERE x =~ '(?<=Test\\s)[\\w\\s]*(?=-Plate\\sID)' | x ] ...

stugorf by Node Clone
  • 1463 Views
  • 2 replies
  • 0 kudos

Linebreaks lost on node.setProperty

I'm having an odd issue where line-break characters in strings are converted to the \n string when copying properties between nodes. The code for copying properties is basically lifted from APOC: private <T extends PropertyContainer> T copyProperties...

Jiropole by Graph Voyager
  • 989 Views
  • 2 replies
  • 0 kudos

Resolved! Export/Import Active Directory as graph

I want to map out my Active Directory domain and import it into Neo4j. Does anyone have any advice on going about doing this? Do you execute a bunch of command lines to CSV? Or is there a better way? Any command or scripts would be appreciated.

Resolved! Update a value of a key in a relationship

Hi, I want to ask you if there is a way to update just a value of a key in a relationship. I have relationships in my graph where each one has a label "emails_exchanges" and actually my code is: if graph.match((originLblMatcher, targetLblMatc...

lx2pwnd by Node Clone
  • 5827 Views
  • 3 replies
  • 3 kudos

Importing Netflow (ish) issues

Hello, I'm having some issues building proper relationships with neo4j and I assume this is due to my poor loading. I basically want to import something that is almost like netflow: user, src_ip,dst_ip,protocol,packets,bytes,start_time,end_time,actio...

Variable evaluation in FOREACH

I am loading a CSV and during each row I am trying to set properties for nodes dynamically within a FOREACH block. I have verified that the variables are in scope and available in the loop, but I am finding that when a variable is part of a String co...

stugorf by Node Clone
  • 7139 Views
  • 14 replies
  • 0 kudos

Load CSV - Update a field if its not null in CSV

I am trying to load data using the load csv. syntax might be wrong here. <USING PERIODIC COMMIT 100 LOAD CSV WITH HEADERS FROM "file:///myfile.csv" as eachline FIELDTERMINATOR , WITH eachline "MATCH(r:Record) where r.Id contains eachline.Id set r.Na...

Kailash by Graph Buddy
  • 2199 Views
  • 5 replies
  • 0 kudos

Recursive Query with levels

Hi there: I have created a database with the names and parent_of relationship to depict my extended family. I am trying to query the database and return the levels of relationship. For example, I am querying my mother, and my sibling and our children...

How to add multiple values to one property

I have data in CSV , like Name id AB 1 2 3 I have three id for one name and i have created node of person with name property(p:Person{name}) now i want to add id property and want all those id in that property like p:Person{name:AB,id:[1,2,...