query-b532a73b9e402dcf98facde83fabaeb0
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX prov: <http://www.w3.org/ns/prov#>
PREFIX pr: <http://www.wikidata.org/prop/reference/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel {
?item ?prop ?statement.
?statement prov:wasDerivedFrom ?ref.
?ref pr:P854 <http://www.cystat.gov.cy/mof/cystat/statistics.nsf/All/59681B67FE82FD39C2257AD90053F3FA/$file/POP_CEN_11-POP_PLACE_RESID-EL-171115.xls?OpenElement>.
?ref pr:P1476 'Απογραφή πληθυσμού 2011'@el .
?ref pr:P1476 'Census of population 2011'@en .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
- https://www.wikidata.org/wiki/User:Xaris333/query
- https://www.wikidata.org/wiki/Wikidata:Request_a_query/Archive/2020/01
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?prop")
v4("?ref")
v3("?statement")
c6([sCensus of population 2011^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal
c8(["bd:serviceParam"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c5([sΑπογραφή πληθυσμού 2011^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal
c3([http://www.cystat.gov.cy/mof/cystat/statistics.nsf/All/59681B67FE82FD39C2257AD90053F3FA/$file/POP_CEN_11-POP_PLACE_RESID-EL-171115.xls?OpenElement]):::iri
v1 -->v2--> v3
v3 --"prov:wasDerivedFrom"--> v4
v4 --"pr:P854"--> c3
v4 --"pr:P1476"--> c5
v4 --"pr:P1476"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end