query-9ae8bd5c6a0020b3badfa84d4d6faa89
Alle Tripel aller Personen, die eine ORCID haben
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?person ?PersonLabel ?p ?pLabel ?o ?oLabel
{
?person wdt:P496 ?orcid .
?person ?p ?o .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,de" }
} ORDER BY ?person
LIMIT 1000
Query found at
- https://www.wikidata.org/wiki/User:Wiljes/ORCID
- https://www.wikidata.org/wiki/User:Wiljes/SPARQL-queries
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?o"):::projected
v2("?orcid")
v3("?p"):::projected
v1("?person"):::projected
c3(["bd:serviceParam"]):::iri
c5(["#91;AUTO_LANGUAGE#93;,en,de"]):::literal
v1 --"wdt:P496"--> v2
v1 -->v3--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end