parent
3e0f6b5405
commit
b630ab4185
@ -0,0 +1,5 @@ |
|||||||
|
PREFIX ex: <http://example.org/> |
||||||
|
|
||||||
|
SELECT * WHERE { |
||||||
|
?s ex:p+ ?s |
||||||
|
} |
@ -0,0 +1,18 @@ |
|||||||
|
<?xml version="1.0"?> |
||||||
|
<sparql xmlns="http://www.w3.org/2005/sparql-results#"> |
||||||
|
<head> |
||||||
|
<variable name="s"/> |
||||||
|
</head> |
||||||
|
<results> |
||||||
|
<result> |
||||||
|
<binding name="s"> |
||||||
|
<uri>http://example.org/s</uri> |
||||||
|
</binding> |
||||||
|
</result> |
||||||
|
<result> |
||||||
|
<binding name="s"> |
||||||
|
<uri>http://example.org/m</uri> |
||||||
|
</binding> |
||||||
|
</result> |
||||||
|
</results> |
||||||
|
</sparql> |
@ -0,0 +1,4 @@ |
|||||||
|
@prefix ex: <http://example.org/> . |
||||||
|
|
||||||
|
ex:s ex:p ex:m . |
||||||
|
ex:m ex:p ex:s , ex:sbis . |
@ -0,0 +1,5 @@ |
|||||||
|
PREFIX ex: <http://example.org/> |
||||||
|
|
||||||
|
SELECT * WHERE { |
||||||
|
<< ?s ex:p ex:o >> ex:p+ << ?s ex:p ?o >> |
||||||
|
} |
@ -0,0 +1,17 @@ |
|||||||
|
<?xml version="1.0"?> |
||||||
|
<sparql xmlns="http://www.w3.org/2005/sparql-results#"> |
||||||
|
<head> |
||||||
|
<variable name="s"/> |
||||||
|
<variable name="o"/> |
||||||
|
</head> |
||||||
|
<results> |
||||||
|
<result> |
||||||
|
<binding name="s"> |
||||||
|
<uri>http://example.org/s</uri> |
||||||
|
</binding> |
||||||
|
<binding name="o"> |
||||||
|
<uri>http://example.org/oa</uri> |
||||||
|
</binding> |
||||||
|
</result> |
||||||
|
</results> |
||||||
|
</sparql> |
@ -0,0 +1,4 @@ |
|||||||
|
@prefix ex: <http://example.org/> . |
||||||
|
|
||||||
|
<< ex:s ex:p ex:o >> ex:p ex:m . |
||||||
|
ex:m ex:p << ex:s ex:p ex:oa >> , << ex:sbis ex:p ex:oa >> . |
Loading…
Reference in new issue