query-830035ec295015f83afa8c47950d8f77

rq turtle/ttl

List of hotels in Ethiopia SELECT ?hotel ?hotelLabel ?located_in_the_administrative_territorial_entity ?located_in_the_administrative_territorial_entityLabel WHERE { ?hotel wdt:P31 wd:Q27686; wdt:P17 wd:Q115. 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

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 Ethiopia
SELECT ?hotel ?hotelLabel ?located_in_the_administrative_territorial_entity ?located_in_the_administrative_territorial_entityLabel WHERE {
  ?hotel wdt:P31 wd:Q27686;
    wdt:P17 wd:Q115.
  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 c4(["wd:Q115"]):::iri c2(["wd:Q27686"]):::iri c6(["bd:serviceParam"]):::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 subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P131".-> v2 end