query-d3d91efc178ea9e5f0bdf18476b00495
People with an ORCID iD, and an article in a given Wikipedia
SELECT ?person ?orcid ?personLabel ?sitelink
{
?person wdt:P496 ?orcid.
?sitelink schema:about ?person.
?sitelink schema:isPartOf https://he.wikipedia.org/.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#People with an ORCID iD, and an article in a given Wikipedia
SELECT ?person ?orcid ?personLabel ?sitelink
{
?person wdt:P496 ?orcid.
?sitelink schema:about ?person.
?sitelink schema:isPartOf <https://he.wikipedia.org/>.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?orcid"):::projected
v1("?person"):::projected
v3("?sitelink"):::projected
c4([https://he.wikipedia.org/]):::iri
c6(["bd:serviceParam"]):::iri
c8(["en"]):::literal
v1 --"wdt:P496"--> v2
v3 --"schema:about"--> v1
v3 --"schema:isPartOf"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end