-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Labels
Description
Hello.
According to the spec, given a FILTER (NOT) EXISTS pattern E, the variables of the group graph pattern that contains E are in scope of E.
Does this mean that queries, such as the one provided below, should be rejected?
PREFIX : <http://example.com/>
SELECT * WHERE {
?x :p ?n
FILTER NOT EXISTS {
?x :q ?m .
BIND(10 AS ?n) # ?n already in scope (?)
FILTER(?n = ?m)
}
}