query-426c1ef43888c69930e232630beb8166
TODO
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#>
SELECT distinct ?item ?article ?articleLabel
WHERE {
?item wdt:P496 ?orcid . # item has an ORCID = it's a publishing researcher
Values ?orcid { "0000-0003-2300-3928" }. # ... and the ORCID is that of "Tasuku Honjo"
?article wdt:P50 ?item . # an article has this person as author
?article wdt:P31 ?type . # what is the article?
?type wdt:P279* wd:Q13442814 # it is a scholarly article or subclass (not all are classed directly w/ Q13442814)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?article"):::projected
v1("?item"):::projected
v3("?orcid")
v4("?type")
c5(["wd:Q13442814"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P496"--> v3
bind0[/VALUES ?orcid/]
bind0-->v3
bind00(["0000-0003-2300-3928"])
bind00 --> bind0
v3 --"wdt:P50"--> v1
v3 --"wdt:P31"--> v4
v4 --"wdt:P279"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end