Closes #261pull/263/head
parent
becb64b80b
commit
d16033ba66
@ -0,0 +1,6 @@ |
|||||||
|
PREFIX ex: <http://example.com/> |
||||||
|
|
||||||
|
SELECT ?a ?b WHERE { |
||||||
|
BIND(ex:a as ?a) |
||||||
|
{SELECT ?b WHERE { BIND(ex:b as ?b) FILTER(!BOUND(?a))}} |
||||||
|
} |
@ -0,0 +1,17 @@ |
|||||||
|
<?xml version="1.0"?> |
||||||
|
<sparql xmlns="http://www.w3.org/2005/sparql-results#"> |
||||||
|
<head> |
||||||
|
<variable name="a"/> |
||||||
|
<variable name="b"/> |
||||||
|
</head> |
||||||
|
<results> |
||||||
|
<result> |
||||||
|
<binding name="a"> |
||||||
|
<uri>http://example.com/a</uri> |
||||||
|
</binding> |
||||||
|
<binding name="b"> |
||||||
|
<uri>http://example.com/b</uri> |
||||||
|
</binding> |
||||||
|
</result> |
||||||
|
</results> |
||||||
|
</sparql> |
Loading…
Reference in new issue