parent
e922d3293b
commit
add1dff458
@ -0,0 +1,6 @@ |
||||
PREFIX ex: <http://example.org/> |
||||
|
||||
SELECT ?s ?o WHERE { |
||||
VALUES ?s { ex:S } |
||||
OX_LATERAL GRAPH ex:G { FILTER(BOUND(?s)) . VALUES ?o { ex:O } } |
||||
} |
@ -0,0 +1,6 @@ |
||||
PREFIX ex: <http://example.org/> |
||||
|
||||
SELECT ?s ?o WHERE { |
||||
VALUES ?s { ex:S } |
||||
OX_LATERAL OPTIONAL { FILTER(BOUND(?s)) . VALUES ?o { ex: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/O</uri> |
||||
</binding> |
||||
</result> |
||||
</results> |
||||
</sparql> |
Loading…
Reference in new issue