Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. (ns wikidataexplore.core
  2. (:require [mundaneum.query :refer [describe entity label property query]]
  3. [backtick :refer [template]]
  4. [clj-time.format :as tf]))
  5.  
  6.  
  7. ;; Nobel Prizes by recipient's place of birth
  8. (query
  9. '[:select ?countryLabel (count ?p :as ?count)
  10. :where [[?p (wdt :award-received) ?awd]
  11. [?awd (wdt :instance-of) (entity "Nobel Prize")]
  12. [?p (wdt :place-of-birth) ?birthplace]
  13. [?birthplace (wdt :country) ?country]]
  14. :group-by ?countryLabel
  15. :order-by (desc ?count)])
  16.  
  17. ;; attempting to group-by using both country and award subtype
  18. (query
  19. '[:select ?awdLabel ?CountryLabel (count ?p :as ?count)
  20. :where [[?p (wdt :award-received) ?awd]
  21. [?awd (wdt :instance-of) (entity "Nobel Prize")]
  22. [?p (wdt :place-of-birth) ?birthplace]
  23. [?birthplace (wdt :country) ?country]]
  24. :group-by ?awdLabel ?countryLabel
  25. :order-by (desc ?count)])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement