query-7c51080b731cb168e9a85f59f8d3c00f

rq turtle/ttl

TODO

Use at

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
select ?item ?interval where
{
   { 
  select ?item ?interval ?namestring where
  {
    ?item p:P50 [pq:P1545 ?interval ; ps:P50 ?namestring; pq:P1932 [] ] .
  } LIMIT 50000 }  ?item p:P2093 [pq:P1545 ?interval ; ps:P2093 ?name ] . 
  ?name rdfs:label ?namestring. 
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?interval"):::projected v3("?item"):::projected v4("?name") v2("?namestring") a2((" ")) a1((" ")) a3((" ")) a1 --"p:qualifier/P1545"--> v1 a1 --"p:statement/P50"--> v2 a1 --"p:qualifier/P1932"--> a2 v3 --"p:P50"--> a1 a3 --"p:qualifier/P1545"--> v1 a3 --"p:statement/P2093"--> v4 v3 --"p:P2093"--> a3 v4 --"rdfs:label"--> v2