query-1586b7f72956ab58e891ab62d18f4969

rq turtle/ttl

People alive after 2011, who received a Nobel prize, with ORCID iD, if any SELECT ?person ?personLabel ?ORCID ?award ?awardLabel ?ddate WHERE { SERVICE wikibase:label { bd:serviceParam wikibase:language "en". } ?person wdt:P166 ?award. ?person wdt:P31 wd:Q5. ?award wdt:P279* ?type. ?type wdt:P31 wd:Q7191. OPTIONAL { ?person wdt:P496 ?ORCID. } OPTIONAL { ?person wdt:P570 ?ddate. FILTER(?ddate > "2012-01-01T00:00:00Z"^^xsd:dateTime) } }

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 bd: <http://www.bigdata.com/rdf#>
#People alive after 2011, who received a Nobel prize, with ORCID iD, if any
SELECT ?person ?personLabel ?ORCID ?award ?awardLabel ?ddate WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
  ?person wdt:P166 ?award.
  ?person wdt:P31 wd:Q5.
  ?award wdt:P279* ?type.
  ?type wdt:P31 wd:Q7191.
  OPTIONAL { ?person wdt:P496 ?ORCID. }
  OPTIONAL { ?person wdt:P570 ?ddate. 
  FILTER(?ddate > "2012-01-01T00:00:00Z"^^xsd:dateTime) }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?ORCID"):::projected v3("?award"):::projected v1("?ddate"):::projected v2("?person"):::projected v4("?type") c3(["bd:serviceParam"]):::iri c8(["wd:Q5"]):::iri c5(["en"]):::literal c10(["wd:Q7191"]):::iri subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end v2 --"wdt:P166"--> v3 v2 --"wdt:P31"--> c8 v3 --"wdt:P279"--> v4 v4 --"wdt:P31"--> c10 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P496".-> v5 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P570".-> v1 end