query-64116fd26adb37050d77dc6f24960097
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?qualy
WHERE
{
?item p:P31 ?stat .
?stat ps:P31 wd:Q19389637.
?stat pq:P1433 ?qualy.
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("?item"):::projected
v3("?qualy"):::projected
v2("?stat")
c6(["bd:serviceParam"]):::iri
c3(["wd:Q19389637"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"p:P31"--> v2
v2 --"p:statement/P31"--> c3
v2 --"p:qualifier/P1433"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end