query-608151ed37bd97edb1e52d17f80ad260
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?sitelink ?article ?coord where
{
{ SELECT ?item ?coord ?article WHERE
{
?article schema:about ?item ;
schema:isPartOf <https://he.wikipedia.org/> .
?item wdt:P625 ?coord .
} } ?sitelink ^schema:name ?article .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],he,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?article"):::projected
v3("?coord"):::projected
v2("?item"):::projected
v4("?sitelink"):::projected
c3([https://he.wikipedia.org/]):::iri
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,he,en"]):::literal
v1 --"schema:about"--> v2
v1 --"schema:isPartOf"--> c3
v2 --"wdt:P625"--> v3
v1 --"schema:name"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end