query-bcd23cfe7fa733233d5dd723e9a5c817
editors-in-chief (occupation)
with date of birth, date of death
with ORCID ID
SELECT ?editor_in_chief ?editor_in_chiefLabel ?ORCID_iD ?date_of_birth ?date_of_death WHERE { SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } ?editor_in_chief wdt:P106 wd:Q589298. OPTIONAL { ?editor_in_chief wdt:P496 ?ORCID_iD. } OPTIONAL { ?editor_in_chief wdt:P569 ?date_of_birth. } OPTIONAL { ?editor_in_chief wdt:P570 ?date_of_death. } } ORDER BY DESC(?ORCID_iD) LIMIT 1000
Use at
- https://query.wikidata.org/sparql
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#>
# editors-in-chief (occupation)
# with date of birth, date of death
# with ORCID ID
SELECT ?editor_in_chief ?editor_in_chiefLabel ?ORCID_iD ?date_of_birth ?date_of_death WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?editor_in_chief wdt:P106 wd:Q589298.
OPTIONAL { ?editor_in_chief wdt:P496 ?ORCID_iD. }
OPTIONAL { ?editor_in_chief wdt:P569 ?date_of_birth. }
OPTIONAL { ?editor_in_chief wdt:P570 ?date_of_death. }
}
ORDER BY DESC(?ORCID_iD)
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?ORCID_iD"):::projected
v3("?date_of_birth"):::projected
v4("?date_of_death"):::projected
v2("?editor_in_chief"):::projected
c2(["bd:serviceParam"]):::iri
c6(["wd:Q589298"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v2 --"wdt:P106"--> c6
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P496".-> v1
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P569".-> v3
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P570".-> v4
end