reteplayground
Aggregate

The most-cited acts in Swiss federal law

SELECT ?act ?title ?lang (COUNT(*) AS ?citations) WHERE {
  GRAPH ?g1 { ?c jolux:citationToLegalResource ?sub }
  GRAPH ?g2 { ?sub jolux:legalResourceSubdivisionIsPartOf…
  GRAPH ?g3 { ?act jolux:isRealizedBy ?e }
  GRAPH ?g4 { ?e jolux:title ?title ; jolux:language ?lan…
} GROUP BY ?act ?title ?lang ORDER BY DESC(?citations) LI…
Run this query → no server · no download · no account
caviri.github.io/rete
Run this query in the playground → no server, no download — the query runs in your browser.

The query

PREFIX jolux: <http://data.legilux.public.lu/resource/ontology/jolux#> SELECT ?act ?title ?lang (COUNT(*) AS ?citations) WHERE { GRAPH ?g1 { ?c jolux:citationToLegalResource ?sub } GRAPH ?g2 { ?sub jolux:legalResourceSubdivisionIsPartOf ?act } GRAPH ?g3 { ?act jolux:isRealizedBy ?e } GRAPH ?g4 { ?e jolux:title ?title ; jolux:language ?lang } } GROUP BY ?act ?title ?lang ORDER BY DESC(?citations) LIMIT 25

rete playground · documentation · github.com/caviri/rete