query-24b4041fe8d3e8720a08b036f80f55db
People alive after 2011, who received a science 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 filter (?type not in (wd:Q35637, wd:Q37922)). ?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
- https://query.wikidata.org/sparql
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 science 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 filter (?type not in (wd:Q35637, wd:Q37922)).
?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
v4("?award"):::projected
v1("?ddate"):::projected
v3("?person"):::projected
v2("?type")
c7(["en"]):::literal
c12(["wd:Q7191"]):::iri
c5(["bd:serviceParam"]):::iri
c10(["wd:Q5"]):::iri
f0[["?type != 'wd:Q35637'?type != 'wd:Q37922'"]]
f0 --> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end
v3 --"wdt:P166"--> v4
v3 --"wdt:P31"--> c10
v4 --"wdt:P279"--> v2
v2 --"wdt:P31"--> c12
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P496".-> v5
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P570".-> v1
end