query-fcacba5dc53de95aac2b57401104762b
:(P1705)native label to use a string, you can do it be selecting the family name(s) with a suitable hadHowever, if you
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?person ?personLabel WHERE {
?person wdt:P734 ?familyName .
?familyName wdt:P1705 "Krupp"@mul
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?familyName")
v1("?person"):::projected
c7(["#91;AUTO_LANGUAGE#93;,de"]):::literal
c5(["bd:serviceParam"]):::iri
c3([sKrupp^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal
v1 --"wdt:P734"--> v2
v2 --"wdt:P1705"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end