query-7adeebc44f29dd13953123c37d491f42
ORCID iD holders that have an article on a given Wikipedia SELECT ?sitelink ?itemLabel ?orcid { ?item wdt:P31 wd:Q5. ?item wdt:P496 ?orcid. ?sitelink schema:isPartOf https://de.wikipedia.org/; schema:about ?item; SERVICE wikibase:label { bd:serviceParam wikibase:language "en" } . } ORDER BY ?itemLabel
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#ORCID iD holders that have an article on a given Wikipedia
SELECT ?sitelink ?itemLabel ?orcid
{
?item wdt:P31 wd:Q5.
?item wdt:P496 ?orcid.
?sitelink schema:isPartOf <https://de.wikipedia.org/>;
schema:about ?item;
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" } .
} ORDER BY ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item")
v1("?itemLabel"):::projected
v3("?orcid"):::projected
v4("?sitelink"):::projected
c5([https://de.wikipedia.org/]):::iri
c8(["bd:serviceParam"]):::iri
c2(["wd:Q5"]):::iri
c10(["en"]):::literal
v2 --"wdt:P31"--> c2
v2 --"wdt:P496"--> v3
v4 --"schema:isPartOf"--> c5
v4 --"schema:about"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end