query-d396d8f1202eeff142c287da4890fb3e

rq turtle/ttl

TODO

Use at

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
#sitelinks to tgwiki with coord
SELECT ?item ?sitelink ?coord WHERE {
    ?item wdt:P625 ?coord .
    ?sitelink schema:about ?item.
    ?sitelink schema:isPartOf <https://tg.wikipedia.org/> .
    SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?coord"):::projected v1("?item"):::projected v3("?sitelink"):::projected c6(["bd:serviceParam"]):::iri c8(["fr"]):::literal c4([https://tg.wikipedia.org/]):::iri v1 --"wdt:P625"--> v2 v3 --"schema:about"--> v1 v3 --"schema:isPartOf"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end