Changes between Version 5 and Version 6 of cypher_queries


Ignore:
Timestamp:
Nov 9, 2015, 2:26:25 PM (8 years ago)
Author:
casties
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • cypher_queries

    v5 v6  
    2525 {{{
    2626match (t1:TEXT)-[r:is_commentary_on]->(t2:TEXT) return t1,r,t2
     27 }}}
     28 * Graph of all commentaries of all texts and their authors
     29 {{{
     30MATCH (p1:PERSON)<-[r1:was_created_by]-(t1:TEXT)-[r2:is_commentary_on*]->(t2:TEXT)-[r3:was_created_by]->(p2:PERSON)
     31RETURN p1,r1,t1,r2,t2,r3,p2
    2732 }}}
    2833