I have a sml:IterateWhile module with parameter: sml:AskQuery
ASK WHERE {
    :x :cursor ?cursor .
    :x :total ?total .
    FILTER (?cursor < ?total) .
}

When within the body of this iteration, I try to change the values using a 
sml:PerformUpdate
DELETE {
    :x :cursor ?cursor .
}
INSERT {
    :x :cursor ?newcursor .
}
WHERE {
    :x :cursor ?cursor .
    :x :limit ?limit .
    BIND ((?cursor + ?limit) AS ?newcursor) .
}

I get an error:
Failed to find urn:x-arq:DefaultGraphNode for update.

-- 
-- You received this message because you are subscribed to the Google
Group "TopBraid Suite Users", the topics of which include Enterprise Vocabulary 
Network (EVN), TopBraid Composer, TopBraid Live,
TopBraid Ensemble, SPARQLMotion, SPARQL Web Pages and SPIN.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/topbraid-users?hl=en


Reply via email to