TrinkerMedia

How Many Manuscripts

May 10th, 2020
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SPARQL 0.35 KB | None | 0 0
  1. #Europeana Virtuoso Search (http://sparql.europeana.eu/)
  2. PREFIX dc: <http://purl.org/dc/elements/1.1/>
  3. SELECT ?type, (COUNT(?type) AS ?ccount)
  4. WHERE  
  5. {
  6.         ?objectInfo dc:title ?title .              
  7.         ?objectInfo dc:type ?type .
  8.         FILTER REGEX(?type, 'manuscript')        
  9.     }
  10.  
  11. GROUP BY ?type
  12. ORDER BY ?ccount    
  13. LIMIT 100
Add Comment
Please, Sign In to add comment