query-61b42f53ca3452c07026269e502ac767
TODO
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#>
SELECT ?item ?itemLabel ?country ?countryLabel
WHERE
{
VALUES ?country {wd:Q96 wd:Q774}
?item wdt:P27 ?country .
?item wdt:P21 wd:Q6581072 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "es,en". }
} order by ?countryLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?country"):::projected
v1("?countryLabel"):::projected
v3("?item"):::projected
c5(["bd:serviceParam"]):::iri
c7(["es,en"]):::literal
c3(["wd:Q6581072"]):::iri
bind0[/VALUES ?country/]
bind0-->v2
bind00(["wd:Q96"])
bind00 --> bind0
bind01(["wd:Q774"])
bind01 --> bind0
v3 --"wdt:P27"--> v2
v3 --"wdt:P21"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end