query-bc2175ef05d13a1c8424f9313bae9f52
Synia: ORCID
Use at
- https://query.wikidata.org/sparql
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
?identifier ?identifierLabel ?identifierDescription
?number_of_orcids
WHERE {
{
SELECT
(COUNT(*) AS ?number_of_orcids)
WHERE {
[] wdt:P496 []
}
} BIND(wd:Q51044 AS ?identifier)
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;
v2("?identifier"):::projected
v1("?number_of_orcids"):::projected
a1((" "))
a2((" "))
c3(["bd:serviceParam"]):::iri
c5(["#91;AUTO_LANGUAGE#93;,en"]):::literal
a1 --"wdt:P496"--> a2
bind1[/"count(*)"/]
bind1 --as--o v1
bind2[/"'wd:Q51044'"/]
bind2 --as--o v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end