query-f05e1914d2818b9e57b92a0118438095

rq turtle/ttl

List of hotels in Ghana SELECT ?hotel ?hotelLabel ?located_in_the_administrative_territorial_entity ?located_in_the_administrative_territorial_entityLabel WHERE { ?hotel wdt:P31 wd:Q27686; wdt:P17 wd:Q117. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } OPTIONAL { ?hotel wdt:P131 ?located_in_the_administrative_territorial_entity. } }

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#>
#List of hotels in Ghana
SELECT ?hotel ?hotelLabel ?located_in_the_administrative_territorial_entity ?located_in_the_administrative_territorial_entityLabel WHERE {
  ?hotel wdt:P31 wd:Q27686;
    wdt:P17 wd:Q117.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  OPTIONAL { ?hotel wdt:P131 ?located_in_the_administrative_territorial_entity. }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?hotel"):::projected v2("?located_in_the_administrative_territorial_entity"):::projected c2(["wd:Q27686"]):::iri c6(["bd:serviceParam"]):::iri c4(["wd:Q117"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P31"--> c2 v1 --"wdt:P17"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P131".-> v2 end