query-d8e629b3506471412fc7b909e7de6409
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?innerText WHERE {
?century wdt:P31 wd:Q578.
?century wdt:P585 "1600-00-00T00:00:00Z"^^xsd:dateTime.
SERVICE wikibase:label
{
bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en".
?century rdfs:label ?innerText .
}
}
LIMIT 1
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?century")
v2("?innerText"):::projected
c2(["wd:Q578"]):::iri
c6(["bd:serviceParam"]):::iri
c4(["1600-00-00T00:00:00Z^^xsd:dateTime"]):::literal
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P585"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
v1 --"rdfs:label"--> v2
end