query-aadfc318f86096375149549c174e9c28

rq turtle/ttl

Polscy biochemicy i biolodzy molek. ur. >1935

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#>
SELECT DISTINCT ?item ?itemLabel ?id ?dob WHERE {
  { ?item wdt:P106 wd:Q2919046.     
  } # biochemist
  UNION
  { ?item wdt:P106 wd:Q15839206.} # mol biologist
  ?item wdt:P27 wd:Q36.      # PL
  ?item wdt:P569 ?dob.
  FILTER( year(?dob) > 1935)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,pl". }

OPTIONAL { ?item wdt:P3124 ?id. }
}
LIMIT 1000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?dob"):::projected v3("?id"):::projected v2("?item"):::projected c4(["wd:Q15839206"]):::iri c9(["bd:serviceParam"]):::iri c3(["wd:Q2919046"]):::iri c11(["en,pl"]):::literal c6(["wd:Q36"]):::iri f0[["year-from-dateTime(?dob) > '1935^^xsd:integer'"]] f0 --> v1 subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P106"--> c4 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P106"--> c3 end union0r <== or ==> union0l end v2 --"wdt:P27"--> c6 v2 --"wdt:P569"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P3124".-> v3 end