query-24c04c9d3b3ae81571e79816b5e54368

rq turtle/ttl

Daten-DownloadWelche Möglichkeiten habe ich, wenn ich z.B. von allen Personen in Wikidata die Aussagen zu (Geburtstag, Geburtsort, Todestag, Todesort, Tätigkeit, sowie das deutsche und engl. Label und die Beschreibung). Das kann ich zwar in eine Abfrage hauen und dort als CSV ausgeben, aber doch nicht von allen Personen, da krieg ich doch einen TimeOut-Fehler. Was für andere Möglichkeiten gibt es?

Use at

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#>
PREFIX schema: <http://schema.org/>
#defaultView:Table;ImageGrid;
SELECT DISTINCT ?item ?itemLabel ?itemDescription ?article ?dob ?pob ?dod ?pod ?image WHERE {
  ?item wdt:P31 wd:Q5.               # ist ein = Mensch
  #?item wdt:P27 wd:Q212.             # Staatsangehörgigkeit = Ukrainer
  ?item wdt:P106 wd:Q13365117.       # Tätigkeit = Handballer
  optional {?item wdt:P569 ?dob }    # Geburtstag
  OPTIONAL {?item wdt:P570 ?dod }     # Todestag  
  OPTIONAL { ?item wdt:P19 ?pob. }   
  OPTIONAL { ?item wdt:P20 ?pod. }   

  ?article schema:about ?item.
  ?article schema:isPartOf <https://de.wikipedia.org/>.    # Artikel in der Deutschen

  OPTIONAL { ?item wdt:P18 ?image. }

  SERVICE wikibase:label { bd:serviceParam wikibase:language "de". }
}
#order by ?itemLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v6("?article"):::projected v2("?dob"):::projected v3("?dod"):::projected v7("?image"):::projected v1("?item"):::projected v4("?pob"):::projected v5("?pod"):::projected c11([https://de.wikipedia.org/]):::iri c16(["de"]):::literal c14(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c4(["wd:Q13365117"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P106"--> c4 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P569".-> v2 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P570".-> v3 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P19".-> v4 end subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P20".-> v5 end v6 --"schema:about"--> v1 v6 --"schema:isPartOf"--> c11 subgraph optional4["(optional)"] style optional4 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v7 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c14 --"wikibase:language"--> c16 end