Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. @prefix sorg: <http://www.schema.org/> .
  2.  
  3. <https://example.com/Foo> sorg:hasPart ( "item1" "item2" "item3" ) .
  4.  
  5. prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
  6.  
  7. CONSTRUCT {
  8. ?thing <urn:prop:to:list> ?list .
  9. ?listRest rdf:first ?head ;
  10. rdf:rest ?tail .
  11. } WHERE {
  12. ?thing <urn:prop:to:list> ?list .
  13.  
  14. ?list rdf:rest* ?listRest .
  15. ?listRest rdf:first ?head ;
  16. rdf:rest ?tail .
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement