query-504bf03c305cbedd36aa9550035b1c4e

rq turtle/ttl

TODO TODO TODO TODO TODO TODO TODO TODO TODO TODO TODO TODO TODO TODO TODO TODO TODO TODO TODO TODO TODO TODO TODO TODO 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 ?item ?itemLabel ?time ?precision
WHERE
{
  VALUES ?precision { 10 11 }#10 = month precision, 11 = day precision
  ?item p:P569/psv:P569 [wikibase:timePrecision ?precision; wikibase:timeValue ?time].
  FILTER (   YEAR(?time) = 1700 ).
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
} 
LIMIT 10

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?item"):::projected v2("?precision"):::projected v1("?time"):::projected a2((" ")) a1((" ")) c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["year-from-dateTime(?time) = '1700^^xsd:integer'"]] f0 --> v1 bind1[/VALUES ?precision/] bind1-->v2 bind10(["10^^xsd:integer"]) bind10 --> bind1 bind11(["11^^xsd:integer"]) bind11 --> bind1 a1 --"wikibase:timePrecision"--> v2 a1 --"wikibase:timeValue"--> v1 v3 --"p:P569"--> a2 a2 --"p:statement/value/P569"--> a1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end