query-f967cbd1a8d2a2049d1a96b003dadb15
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 ?item ?itemLabel where
{
?item wdt:P496 ?orcid . # item has an ORCID = it's a publishing researcher
Values ?orcid { "0000-0003-2300-3928" } # ... and the ORCID is the of "Tasuku Honjo"
# ?item wdt:P50 wd:Q13442814 . # the guy is author (wdt:P50) of research articles (wd:Q13442814)
# ?article wdt:P1687 wd:Q43649390 . # the articles are identified with Wikidata Identifer
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;
v1("?item"):::projected
v3("?orcid")
c3(["bd:serviceParam"]):::iri
c5(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P496"--> v3
bind0[/VALUES ?orcid/]
bind0-->v3
bind00(["0000-0003-2300-3928"])
bind00 --> bind0
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end