query-8382772147f16d79f3b3e359507530cc
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#>
#defaultView:Map
SELECT ?item ?itemLabel ?coord WHERE
{
?sitelink ^schema:name ?article .
?article schema:about ?item ;
schema:isPartOf <https://en.wikivoyage.org/> .
?item wdt:P625 ?coord .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?article")
v4("?coord"):::projected
v3("?item"):::projected
v2("?sitelink")
c7(["bd:serviceParam"]):::iri
c9(["en"]):::literal
c4([https://en.wikivoyage.org/]):::iri
v1 --"schema:name"--> v2
v1 --"schema:about"--> v3
v1 --"schema:isPartOf"--> c4
v3 --"wdt:P625"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end