query-fc982a08d9e9abe966fab45ecf87815b

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

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v6("?firstname") v2("?firstnameLabel"):::projected v5("?lastname") v1("?lastnameLabel"):::projected v4("?orcid"):::projected v3("?person"):::projected c7(["bd:serviceParam"]):::iri c3(["wd:Q24382"]):::iri c9(["en,#91;AUTO_LANGUAGE#93;,de"]):::literal v3 --"wdt:P496"--> v4 v3 --"wdt:P108"--> c3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P734".-> v5 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P735".-> v6 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end