parent
2db906350d
commit
ba9f6528e7
@ -0,0 +1,5 @@ |
||||
PREFIX : <http://example.com/> |
||||
|
||||
SELECT ?a WHERE { |
||||
[ :p1 ?a ; :p2 [ :p3 :foo ] ] |
||||
} |
@ -0,0 +1,13 @@ |
||||
<?xml version="1.0"?> |
||||
<sparql xmlns="http://www.w3.org/2005/sparql-results#"> |
||||
<head> |
||||
<variable name="a"/> |
||||
</head> |
||||
<results> |
||||
<result> |
||||
<binding name="a"> |
||||
<literal>t1</literal> |
||||
</binding> |
||||
</result> |
||||
</results> |
||||
</sparql> |
@ -0,0 +1,4 @@ |
||||
PREFIX : <http://example.com/> |
||||
|
||||
[ :p1 "t1" ; :p2 [ :p3 :foo ] ] . |
||||
[ :p1 "t2" ; :p2 [ :p3 :bar ] ] . |
Loading…
Reference in new issue