-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
externalize iframe sparql for work_cito
- Loading branch information
Showing
2 changed files
with
14 additions
and
2 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
scholia/app/templates/work-cito_cito-incoming-chart.sparql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#defaultView:BubbleChart | ||
SELECT ?intention ?intentionLabel (COUNT(DISTINCT ?citingArticle) AS ?count) WHERE { | ||
VALUES ?CITEDARTICLE { wd:{{q}} } | ||
?citingArticle p:P2860 ?citationStatement . | ||
?citationStatement pq:P3712 ?intention ; | ||
ps:P2860 ?CITEDARTICLE . | ||
?intention wdt:P31 wd:Q96471816 . | ||
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } | ||
} GROUP BY ?intention ?intentionLabel | ||
ORDER BY DESC(?count) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters