query-1b21d6a84014ca8b501cb74f3fa222c8

rq turtle/ttl

Scholary Articles (Q13442814) - how can I count citations (something like What links here) [1]) should be now about 45 Q29048985 (New developments in hyperbranched polymersDear Community, is there a way to count citations (not references, this is the bottom example mentioned) - it should be something like the Special Page "What links here" - for example, the value for the citations of #publications brigitte voit SELECT DISTINCT ?item ?itemLabel ?publicationDate (COUNT(?citations) AS ?count) WHERE { ?item wdt:P31 wd:Q13442814. ?item wdt:P50 wd:Q21256003. ?item wdt:P577 ?publicationDate. optional { ?item wdt:P2860 ?citations. } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } GROUP BY ?item ?itemLabel ?publicationDate ?count ORDER BY ?publicationDate ).contribs • talk (Erfurth comment was added byunsignedThe preceding –

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT (COUNT(DISTINCT ?citedby) as ?count) WHERE { ?citedby wdt:P2860 wd:Q29048985 }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?citedby"):::projected v2("?count") c2(["wd:Q29048985"]):::iri v1 --"wdt:P2860"--> c2 bind1[/"count(?citedby)"/] v1 --o bind1 bind1 --as--o v2