query-dc70e456d37bfc06d498cfe1c19e4ace
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:Q79. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } OPTIONAL { ?hotel wdt:P131 ?located_in_the_administrative_territorial_entity. } OPTIONAL { ?hotel wdt:P131 ?located_in_the_administrative_territorial_entity. } }
Use at
- https://query.wikidata.org/sparql
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:Q79.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
OPTIONAL { ?hotel wdt:P131 ?located_in_the_administrative_territorial_entity. }
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
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c4(["wd:Q79"]):::iri
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
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P131".-> v2
end