query-ac6f6ee2c50b01e5e9d28b96e045b304
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 .
?item wdt:P971 _:CFC .
_:CFC wdt:P31 wd:Q476028 .
_:CFC 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((" "))
c4(["wd:Q476028"]):::iri
c2(["wd:Q56465024"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,el,en"]):::literal
c8(["bd:serviceParam"]):::iri
c6(["wd:Q229"]):::iri
v1 --"wdt:P971"--> c2
v1 --"wdt:P971"--> a1
a1 --"wdt:P31"--> c4
a1 --"wdt:P17"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end