exists

What is the scope of variables in nested exists pattern?
For example, is the inner ?x the same as the outer ?x


select * where {
?x p ?y
filter(! exists {?y q ?z
                        filter(! exists {?x r ?z})
                      })

}


Olivier

Received on Tuesday, 25 May 2010 11:44:47 UTC