query-3e35989422abb99315d1900a00beb12e
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
{
?item wdt:P971 wd:Q56465024 , [wdt:P31 wd:Q476028 ; wdt:P17 wd:Q229]
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],el,en" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
a1((" "))
c2(["wd:Q476028"]):::iri
c6(["wd:Q56465024"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,el,en"]):::literal
c8(["bd:serviceParam"]):::iri
c4(["wd:Q229"]):::iri
a1 --"wdt:P31"--> c2
a1 --"wdt:P17"--> c4
v1 --"wdt:P971"--> c6
v1 --"wdt:P971"--> a1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end