query-c9a3c6a11b1433d23be2a2677f27623f
People with family name "Krupp" and given name "Bertha" SELECT DISTINCT ?person ?personLabel WHERE { ?person wdt:P734 wd:Q37069298 . ?person wdt:P735 wd:Q16420820 . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de" } }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# People with family name "Krupp" and given name "Bertha"
SELECT DISTINCT ?person ?personLabel WHERE {
?person wdt:P734 wd:Q37069298 .
?person wdt:P735 wd:Q16420820 .
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;
v1("?person"):::projected
c2(["wd:Q37069298"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,de"]):::literal
c6(["bd:serviceParam"]):::iri
c4(["wd:Q16420820"]):::iri
v1 --"wdt:P734"--> c2
v1 --"wdt:P735"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end