query-466ce81875faefc8569b6d7b2ec34fb4
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 ?entity ?propertyLabel ?value ?valueLabel WHERE
{
VALUES ?entity {wd:Q21715205}
?entity ?predicate ?value.
?property wikibase:directClaim ?predicate.
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("?entity"):::projected
v2("?predicate")
v4("?property")
v3("?value"):::projected
c3(["bd:serviceParam"]):::iri
c5(["#91;AUTO_LANGUAGE#93;,en"]):::literal
bind0[/VALUES ?entity/]
bind0-->v1
bind00(["wd:Q21715205"])
bind00 --> bind0
v1 -->v2--> v3
v4 --"wikibase:directClaim"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end