query-ec1f8d7ed2fd0ad83c3b5ffa2e2cda27
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?prop ?propLabel ?id ?idLabel WHERE {
wd:Q22812255 ?p ?id .
?prop wikibase:directClaim ?p .
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;
v2("?id"):::projected
v1("?p")
v3("?prop"):::projected
c4(["bd:serviceParam"]):::iri
c1(["wd:Q22812255"]):::iri
c6(["es"]):::literal
c1 -->v1--> v2
v3 --"wikibase:directClaim"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end