query-c50a62a514ed3f75d9b40dd86f61eee2
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 pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?itemLabel ?item ?sLabel
WHERE
{
#?item wdt:P31 wd:Q3305213 .
?item p:P361 ?stat .
?stat pq:P518 ?s
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en,pl,de,fr" .
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v3("?s")
v2("?stat")
c4(["bd:serviceParam"]):::iri
c6(["en,pl,de,fr"]):::literal
v1 --"p:P361"--> v2
v2 --"p:qualifier/P518"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end