query-ec1584aaf662447d00d08a5b5927c122
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX prov: <http://www.w3.org/ns/prov#>
PREFIX pr: <http://www.wikidata.org/prop/reference/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel WHERE {
?item p:P31 _:b1.
_:b1 (prov:wasDerivedFrom/pr:P248) wd:Q5917182.
SERVICE wikibase:label { bd:serviceParam wikibase:language "es". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
a1((" "))
a2((" "))
c6(["bd:serviceParam"]):::iri
c4(["wd:Q5917182"]):::iri
c8(["es"]):::literal
v1 --"p:P31"--> a1
a1 --"prov:wasDerivedFrom"--> a2
a2 --"p:reference/P248"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end