query-ae3d282fdea3b40752a62429dc0cfd1e
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?iataCode WHERE {
VALUES ?iataCode { 'DLO' 'ALA' }
?item wdt:P238 ?iataCode .
SERVICE wikibase:label { bd:serviceParam wikibase:language 'en' }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?iataCode"):::projected
v2("?item"):::projected
c3(["bd:serviceParam"]):::iri
c5(["en"]):::literal
bind0[/VALUES ?iataCode/]
bind0-->v1
bind00(["DLO"])
bind00 --> bind0
bind01(["ALA"])
bind01 --> bind0
v2 --"wdt:P238"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end