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! Find Actors with Common Movies

Write a query to find all actors who satisfy the following conditions: The actor had played together with Tom Hanks in a movie that was released before or in 1995, ANDThe actor has not played together with Tom Hanks in a movie that was released after...

Resolved! A small question about cypher semantics

How should I understand the semantics of these cypher statements. Why the first and second statements have no results and the third statement outputs a line of results? neo4j@neo4j> with 3 as c1 match (v:nonexist) return count(v) as c2, c1;+---------...

czp by Node Link
  • 494 Views
  • 2 replies
  • 1 kudos

Correct URL for API calls to Aura?

Hi all OK I feel dumb but I can't figure out what URL to use for API calls to a DB on Aura. With a local DB I can connect fine: with Postman: http://localhost:7474/db/data/transaction/commit with the PHP client: ->addConnection('default', 'http://neo...

fkqd by Node Link
  • 3877 Views
  • 11 replies
  • 3 kudos

Resolved! find the duplicate nodes

In the sample graph, a few movies have received reviews. This is indicated by a “REVIEWED” relationship between a movie node and a person node. Write a query to find the actors that have played in at least two movies that received at least one rev...

Roche by Node
  • 681 Views
  • 4 replies
  • 0 kudos

Resolved! How to connect products within same order?

Hello, Attached is the schema of a graph for a retail sales dataset. I would like to create relationships between products that are in the same order. I've also attached an Arrow model of what I'm trying to do - see [:BOUGHT_WITH]. I've tried a few t...

Screen Shot 2022-10-05 at 11.14.57 AM.png Screen Shot 2022-10-05 at 11.13.52 AM.png

Resolved! Get all relationships within a list of nodes

Hi ! I'm currently working on a project using Python and Neo4J 3.5. I'm dealing with voluminous data, and my goal to find links between "important" nodes. I wrote the following query in order to find the shortest path between every pair of "important...

completegraph.PNG result.PNG

Resolved! Non-symmetrical relationships

I would greatly appreciate some advice on relationships. Consider the following graph: I want to avoid redundant (“sister of”) and symmetric relationships (“child of” alongside “parent of”), which works fine in a graph presentation.However, the data...

family.png
guido by Graph Buddy
  • 484 Views
  • 2 replies
  • 0 kudos

Importing Large amount of Data .NET

I have larger amount of data in the following form :  The nodes tree of data in the form of class containing list of the other  for example :  Class site { string name; List<equipment> equipment; } Class equipment{ string name; List<Tags> tags; } ......

Automatic SQL to Cypher Query Tool

Hi all, For my final year undergraduate capstone project, I am attempting to build an ETL tool that is able to automatically transform an SQL database to a Neo4j Cypher query language. Admittedly, I am still new here, and am still getting my hands di...