query-de12378575c1e42bc7e4d4cea4b2bd0b
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 ?item ?itemLabel ?property ?propertyLabel ?value ?valueLabel WHERE {
VALUES ?item {wd:Q20906509
wd:Q74457662
wd:Q20897620 }
?item ?predicate ?value .
?property wikibase:directClaim ?predicate .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . }
} order by ?item ?property ?value
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?item"):::projected
v4("?predicate")
v2("?property"):::projected
v3("?value"):::projected
c3(["bd:serviceParam"]):::iri
c5(["en"]):::literal
bind0[/VALUES ?item/]
bind0-->v4
bind00(["wd:Q20906509"])
bind00 --> bind0
bind01(["wd:Q74457662"])
bind01 --> bind0
bind02(["wd:Q20897620"])
bind02 --> bind0
v4 -->v4--> v3
v2 --"wikibase:directClaim"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end