query-43610b0525a6feb0dd4a2554454adce7

rq turtle/ttl

Bandara di Hong Kong

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 ?airport ?airportLabel ?airportDescription ?image ?coordinate_location WHERE {
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
       ?airport wdt:P31  wd:Q1248784;
                wdt:P131 wd:Q8646.
       OPTIONAL { ?airport wdt:P18 ?image. }
       OPTIONAL { ?airport wdt:P625 ?coordinate_location. }
}
LIMIT 5

Query found at

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