query-888ac6063b0cb30fc77c6c499235a15f
Triples im which Cord Wiljes (Q53243913) is the object
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 ?s ?sLabel ?p ?propLabel
WHERE {
# needed to desplay the property's label
?prop wikibase:directClaim ?p . # To display the property's label
?s ?p wd:Q53243913 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en" . }
} ORDER BY ASC(?sLabel)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?p"):::projected
v2("?prop")
v4("?s"):::projected
v1("?sLabel"):::projected
c2(["wd:Q53243913"]):::iri
c4(["bd:serviceParam"]):::iri
c6(["de,en"]):::literal
v2 --"wikibase:directClaim"--> v3
v4 -->v3--> c2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end