query-e7bb4fb07c30202615cdb1c854fce351

rq turtle/ttl

Search for person by name about a "Arthur Goldschmidt" (1902-1970) . So I search in Wikidata for this person. this document on commonsI found

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Table
SELECT distinct ?item ?itemLabel ?itemDescription ?date_of_birth ?date_of_death


WHERE {
   {
  SELECT ?item
  WHERE
  {
    ?item rdfs:label "Arthur Goldschmidt"@en .
    ?item wdt:P31 ?instance_of .
  }
}

  #OPTIONAL { ?item wdt:P19 ?place_of_birth }. 
  #filter (?place_of_birth = wd:Q64)          # Berlin
  #OPTIONAL { ?item wdt:P18 ?image. }        # image
  OPTIONAL { ?item wdt:P569 ?date_of_birth }.
  #OPTIONAL { ?item wdt:P570 ?date_of_death }.
  #FILTER (?date_of_birth >= "1902-02-13T00:00:00Z"^^xsd:dateTime)  # born after
  #FILTER (?date_of_birth <= "1902-02-13T00:00:00Z"^^xsd:dateTime)  # born before
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en". }
}

order by ?date_of_birth

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?date_of_birth"):::projected v3("?instance_of") v2("?item"):::projected c6(["bd:serviceParam"]):::iri c8(["de,en"]):::literal c2([sArthur Goldschmidt^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal v2 --"rdfs:label"--> c2 v2 --"wdt:P31"--> v3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P569".-> v1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end