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.

dpetit1
Node Link
since ‎02-22-2021
‎06-01-2022

User Statistics

  • 4 Posts
  • 1 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

I have graph that contains source code control commits along with their parents and authors. The schema is below: I am trying to write a cypher query to find the earliest pull request in a chain of nodes where a given starting commit is the merge r...
I have created a graph based on commit history of a source code control tool. The basic graph is (c:Commit)-[:PARENT]->(p:Commit) in which every commit except the first references one or more parent commits. The commit is indexed on its URI. I'm look...