Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Europeana Virtuoso Search (http://sparql.europeana.eu/)
- PREFIX dc: <http://purl.org/dc/elements/1.1/>
- SELECT ?type, (COUNT(?type) AS ?ccount)
- WHERE
- {
- ?objectInfo dc:title ?title .
- ?objectInfo dc:type ?type .
- FILTER REGEX(?type, 'manuscript')
- }
- GROUP BY ?type
- ORDER BY ?ccount
- LIMIT 100
Add Comment
Please, Sign In to add comment