query-6f94a58c395a1226cb85f1c6b3fef4e8
Mit Wikidata Lücken in Wikipedia findenDie folgende Abfrage kann in einem kommenden Wikipedia-Editathon, der von der ETH-Bibliothek organisiert wird, verwendet werden. Sie gibt Einträge für Personen aus, die im Universitätsarchiv der ETH Zürich archiviert sind, aber keinen Wikipedia-Artikel auf Deutsch haben: Querying Wikidata & Editing WikipediaThe following query may be used in an upcoming Wikipedia editathon organized by the ETH Library. It outputs items for people with archives at the ETH Zurich University Archives, but without a Wikipedia article in German:
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?person ?personLabel ?personDescription ?occupation
WHERE {
?person wdt:P485 wd:Q39934978 .
MINUS { ?sitelink schema:isPartOf <https://de.wikipedia.org/> ;
schema:about ?person . }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de" }
}
Query found at
- https://www.wikidata.org/wiki/User:Beat_Estermann/WD-Intro-2020-08-25
- https://www.wikidata.org/wiki/User:Beat_Estermann/WD-Intro-2020-11-16
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?person"):::projected
v2("?sitelink")
c4([https://de.wikipedia.org/]):::iri
c9(["#91;AUTO_LANGUAGE#93;,de"]):::literal
c7(["bd:serviceParam"]):::iri
c2(["wd:Q39934978"]):::iri
v1 --"wdt:P485"--> c2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v2 --"schema:isPartOf"--> c4
v2 --"schema:about"--> v1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end