Advertisement
Guest User

sparql 1

a guest
Feb 21st, 2020
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. PREFIX ecrm: <http://erlangen-crm.org/current/>
  2. PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
  3. PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
  4. SELECT ?name {
  5. ?actor rdf:type ecrm:E39_Actor .
  6. ?actor ecrm:P3_has_note "alkotó" .
  7. ?actor rdfs:label ?name
  8.  
  9. FILTER regex(?name, "giovanni", "i")
  10. }
  11.  
  12. PREFIX ecrm: <http://erlangen-crm.org/current/>
  13. PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
  14. PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
  15. SELECT ?actor ?creation ?thing {
  16. ?actor rdf:type ecrm:E39_Actor .
  17. ?creation rdf:type ecrm:E65_Creation .
  18. ?thing rdf:type ecrm:E18_Physical_Thing .
  19. ?creation ecrm:P11_had_participant ?actor .
  20. ?thing ecrm:P12i_was_present_at ?creation
  21. }
  22.  
  23. PREFIX ecrm: <http://erlangen-crm.org/current/>
  24. PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
  25. PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
  26. SELECT ?name ?title {
  27. ?actor rdf:type ecrm:E39_Actor .
  28. ?actor rdfs:label ?name .
  29. ?creation rdf:type ecrm:E65_Creation .
  30. ?thing rdf:type ecrm:E18_Physical_Thing .
  31. ?creation ecrm:P11_had_participant ?actor .
  32. ?thing ecrm:P12i_was_present_at ?creation .
  33. ?creation ecrm:P3_has_note ?props .
  34. ?thing rdfs:label ?title
  35.  
  36. FILTER regex(?props, "rézkarc", "i")
  37. FILTER regex(?name, "rembrandt", "i")
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement