Advertisement
CristianCantoro

gallica_sparql_query

Mar 22nd, 2016
2,507
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SPARQL 0.85 KB | None | 0 0
  1. PREFIX dcterms: <http://purl.org/dc/terms/>
  2. PREFIX dcmitype: <http://purl.org/dc/dcmitype/>
  3.  
  4. SELECT DISTINCT ?edition ?titre ?description  ?editeur ?sujet ?date  ?source ?langue ?droits ?identifiant ?relation
  5. WHERE {
  6.   ?ouvre dcterms:type dcmitype:StillImage .
  7.   ?edition rdarelationships:workManifested ?oeuvre.
  8.   OPTIONAL{
  9.     ?edition dcterms:title ?titre
  10.   }OPTIONAL{
  11.     ?edition dcterms:description ?description
  12.   }OPTIONAL{
  13.     ?edition dcterms:publisher ?editeur
  14.   }OPTIONAL{
  15.     ?edition dcterms:subject ?sujet
  16.   }OPTIONAL{
  17.     ?edition dcterms:date ?date
  18.   }OPTIONAL{
  19.     ?edition dcterms:source ?source
  20.   }OPTIONAL{
  21.     ?edition dcterms:language ?langue
  22.   }OPTIONAL{
  23.     ?edition dcterms:rights ?droits
  24.   }OPTIONAL{
  25.     ?edition dcterms:identifier ?identifiant
  26.   }OPTIONAL{
  27.     ?edition dcterms:relation ?relation
  28.   }
  29. }
  30. LIMIT 100
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement