query-8c2bf1d3f6899a6b0eecde5721f4c3fe

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel {
  ?item wdt:P31 wd:Q32815 .
  ?item wdt:P17 wd:Q35 .
  OPTIONAL { ?item wdt:P625 ?coord }
  FILTER(!BOUND(?coord))
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,ar". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?coord") v2("?item"):::projected c2(["wd:Q32815"]):::iri c7(["bd:serviceParam"]):::iri c4(["wd:Q35"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en,ar"]):::literal f0[["not bound(?coord)"]] f0 --> v1 v2 --"wdt:P31"--> c2 v2 --"wdt:P17"--> c4 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P625".-> v1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end