query-731cf3741cf4b1296f0ad0ef05613aea

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX psv: <http://www.wikidata.org/prop/statement/value/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?mort ?datePrecision WHERE {
  ?item p:P570/psv:P570 [wikibase:timePrecision ?datePrecision; wikibase:timeValue ?mort ] .
  filter(?datePrecision>9)  
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . }
}
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?datePrecision"):::projected v3("?item"):::projected v2("?mort"):::projected a2((" ")) a1((" ")) c7(["bd:serviceParam"]):::iri c9(["en"]):::literal f0[["?datePrecision > '9^^xsd:integer'"]] f0 --> v1 a1 --"wikibase:timePrecision"--> v1 a1 --"wikibase:timeValue"--> v2 v3 --"p:P570"--> a2 a2 --"p:statement/value/P570"--> a1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end