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
  • 976 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
  • 1199 Views
  • 1 replies
  • 1 kudos

How to integrate traffic data in neo4j graph

Hello Everyone, I am trying to build a traffic simulation solution using the neo4j graph. I have imported the map data from OSM. Image is a snapshot of neomap, displaying only highway roads. Now I am looking to feed traffic-related data like current...

3X_5_7_5747c7b2c2ccb8af9575a88ccfe331d492b8d940.jpeg

Unable to use apoc.load.csv in Neo4j 4.1.1

Hello recently I have install Neo4j 4.1.1 My previous version was 3.5.11 . The bellow query worked well in oldversion but now I am getting this error Failed to invoke procedure apoc.periodic.iterate: Caused by: org.neo4j.internal.kernel.api.exc...

Export projected graph

Please, I have created a projected graph, like this: CALL gds.graph.create( 'my-native-graph', 'Author', 'CO_AUTHOR' ) YIELD graphName, nodeCount, relationshipCount, createMillis; I need to export the projected graph in GraphML format. Note. I don't...

Unable to model promise engine in neo4j

Hi, I am building promise engine which will predict the delivery date/time for customer and am trying to model and query below requirement in neo4j database but can't able to do it. Any help will be highly appreciated Thanks in Advance. Node.json {...

How can I add an OR to this MATCH statement?

Hi I currently have this query (that works) MATCH (this)-[:FOLLOWS]->(something)-[:WROTE|TAGGED]-(post:Post) WITH post, ('User' IN labels(something)) AS followingAuthor RETURN DISTINCT post ORDER BY post.date It returns any time a us...

Import csv file (dictionary format?)

Hi, I use neo4j browser and i have a Q. Can I import a csv file like this format? (no column data on top) LOAD CSV FROM '{csv-dir}/neo4j-sample-data.csv' AS info FIELDTERMINATOR ',' CREATE (:Info { name: info[1].name, count:info[1].count. asset_id:i...

2X_4_458ebc16fa108d8d07f2dd28534d4b8e787c5c07.png 2X_5_5030f9abceb42f0c60b28240adeed812001f6525.png
Novice by Node Link
  • 1123 Views
  • 6 replies
  • 0 kudos

Iteration between values of a property

Hello! I have a sequence of code (including CALL apoc.nodes.link procedure) that uses a property value 'X' to run. I need to iterate the same sequence with a list of the property values, namely: 'Y','Z',... Of course I can copy/paste/replace 'X' by '...

axd by Node Link
  • 2116 Views
  • 14 replies
  • 4 kudos

Label vs property on change intensive nodes

Neo4j 4.0 Hi, I have a scenario which I am not sure what would be the best practice both semantically and performatically. The scenario is the following: We have on our database nodes that represent content. This content can have branches and leaves,...

francofs by Node Link
  • 1912 Views
  • 9 replies
  • 3 kudos

Urgently Need help designing query

Hi, I have setup following relationship Customer - [Buys] -> Stocks I am pulling most popular stock as MATCH (n:Customer)-[:BUYS]->(s:Stock) RETURN s,count(distinct n) as cnt order by cnt desc limit 1 Buy relation have Quantity, unit price and invoic...