query-b25ee7e8c54ed58c8a944d609c151d87
Data Gamer
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
{
VALUES ?countries { wd:Q229 wd:Q41 }
?item wdt:P27 ?countries .
?item wdt:P31 wd:Q5 .
?item wdt:P735 wd:Q87263878 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?countries")
v2("?item"):::projected
c7(["bd:serviceParam"]):::iri
c3(["wd:Q5"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c5(["wd:Q87263878"]):::iri
bind0[/VALUES ?countries/]
bind0-->v1
bind00(["wd:Q229"])
bind00 --> bind0
bind01(["wd:Q41"])
bind01 --> bind0
v2 --"wdt:P27"--> v1
v2 --"wdt:P31"--> c3
v2 --"wdt:P735"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end