parent
aa9afe4641
commit
1ddc9a8788
@ -0,0 +1,6 @@ |
|||||||
|
PREFIX ex: <http://example.com/> |
||||||
|
|
||||||
|
SELECT ?s WHERE { |
||||||
|
VALUES ?s { ex:a ex:b } |
||||||
|
FILTER NOT EXISTS { {SELECT ?s WHERE { VALUES ?s { ex:b } }} } |
||||||
|
} |
@ -0,0 +1,6 @@ |
|||||||
|
PREFIX ex: <http://example.com/> |
||||||
|
|
||||||
|
SELECT ?s WHERE { |
||||||
|
VALUES ?s { ex:a ex:b } |
||||||
|
FILTER EXISTS { VALUES ?s { ex:a ex:c } } |
||||||
|
} |
@ -0,0 +1,13 @@ |
|||||||
|
<?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.com/a</uri> |
||||||
|
</binding> |
||||||
|
</result> |
||||||
|
</results> |
||||||
|
</sparql> |
@ -0,0 +1,6 @@ |
|||||||
|
PREFIX ex: <http://example.com/> |
||||||
|
|
||||||
|
SELECT ?s WHERE { |
||||||
|
VALUES ?s { ex:a ex:b } |
||||||
|
FILTER NOT EXISTS { VALUES ?s { ex:b } } |
||||||
|
} |
Loading…
Reference in new issue