Changes between Version 6 and Version 7 of cypher_queries


Ignore:
Timestamp:
Jan 29, 2016, 11:46:25 AM (8 years ago)
Author:
casties
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • cypher_queries

    v6 v7  
    6666
    676714)     Find copying dates in a certain range
     68
     69=== More Cypher queries ===
     70
     71* texts sorted by number of commentaries
     72  * `match (c:TEXT)-[r:is_commentary_on]->(t:TEXT) return count(c), t.ismi_id order by count(c) desc`
     73
     74* distribution of number of commentaries of texts
     75  * `match (c:TEXT)-[r:is_commentary_on]->(t:TEXT) with count(c) as rels, t.ismi_id as iid return count(rels), rels order by rels asc`