reteplayground
Select

What Switzerland published most recently

SELECT ?act ?title ?lang ?published WHERE {
  GRAPH ?g1 { ?act jolux:publicationDate ?published }
  GRAPH ?g2 { ?act jolux:isRealizedBy ?e }
  GRAPH ?g3 { ?e jolux:title ?title ; jolux:language ?lanFILTER(STRLEN(?title) > 0)
} ORDER BY DESC(?published) LIMIT 30
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 ?published WHERE { GRAPH ?g1 { ?act jolux:publicationDate ?published } GRAPH ?g2 { ?act jolux:isRealizedBy ?e } GRAPH ?g3 { ?e jolux:title ?title ; jolux:language ?lang } FILTER(STRLEN(?title) > 0) } ORDER BY DESC(?published) LIMIT 30

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