query-989f0ddfeb918cc6a5e2f489bc6c8056
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 ?subPropertiesLabel WHERE {
?subProperties wdt:P1647* wd:P276.
?subProperties wikibase:directClaim ?claim .
?item ?claim wd:Q15352 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?claim")
v3("?item"):::projected
v1("?subProperties")
c6(["bd:serviceParam"]):::iri
c8(["#91;AUTO_LANGUAGE#93;"]):::literal
c4(["wd:Q15352"]):::iri
c2(["wd:P276"]):::iri
v1 --"wdt:P1647"--> c2
v1 --"wikibase:directClaim"--> v2
v3 -->v2--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end