query-b0e9cc98cc5528c9e96a5f7242c5a0a7

rq turtle/ttl

Welche Bielefelder Forschenden haben schon eine ORCID?

Use at

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 ?person ?personLabel ?orcid
{
  ?person wdt:P496 ?orcid .
  ?person wdt:P108 wd:Q24382 .
  #?person wdt:P734 ?lastname .
  #?person wdt:P735 ?firstname .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,[AUTO_LANGUAGE],de" }
}
ORDER BY ?personLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?orcid"):::projected v2("?person"):::projected v1("?personLabel"):::projected c5(["bd:serviceParam"]):::iri c3(["wd:Q24382"]):::iri c7(["en,#91;AUTO_LANGUAGE#93;,de"]):::literal v2 --"wdt:P496"--> v3 v2 --"wdt:P108"--> c3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end