query-f8480c402364b627506c965019dd0086

rq turtle/ttl

Get number of publications for authors with ORCID and working in the Czech Republic - with federated QueryI have this list of scientists working in the Czech Republic:

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 ?item ?itemLabel ?orcid {
  ?item wdt:P108/wdt:P17 wd:Q213 .
  ?item wdt:P496 ?orcid .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  }

Query found at

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