Re: Binding graph names for WITH and USING

2017-10-26 Thread Andy Seaborne
given your response I'm going to push back until SPARQL 2.1 Thank you, Charles From: Andy Seaborne <a...@apache.org> Sent: Wednesday, October 25, 2017 11:10:12 AM To: users@jena.apache.org Subject: Re: Binding graph names for WITH and USING What are the

Re: Binding graph names for WITH and USING

2017-10-26 Thread Claude Warren
GRAPH { a b c } } INSERT { GRAPH { x y z } } USING >> WHERE { ... } >> >> """ >> >> >> We have taken on binding after USING and WITH as an enhancement request, >> but given your response I'm going to push back >> >> until SPARQL 2.1 >> >> >> Thank you, Cha

Re: Binding graph names for WITH and USING

2017-10-25 Thread Andy Seaborne
s an enhancement request, but given your response I'm going to push back until SPARQL 2.1 Thank you, Charles From: Andy Seaborne <a...@apache.org> Sent: Wednesday, October 25, 2017 11:10:12 AM To: users@jena.apache.org Subject: Re: Binding graph name

Re: Binding graph names for WITH and USING

2017-10-25 Thread Charles Greer
10:12 AM To: users@jena.apache.org Subject: Re: Binding graph names for WITH and USING What are they trying to achieve? The Update has a second error the parsers didn't get to. No WHERE clause - it's mandatory Did they mean: INSERT { GRAPH ?g { <http://example.org/a> <http://exampl

Re: Binding graph names for WITH and USING

2017-10-25 Thread Andy Seaborne
t what people want to hear. Charles Greer Lead Engineer MarkLogic Corporation cgr...@marklogic.com @grechaw www.marklogic.com From: james anderson <ja...@dydra.com> Sent: Wednesday, October 25, 2017 9:59:14 AM To: users@jena.apache.org Subject: Re: Bindin

Re: Binding graph names for WITH and USING

2017-10-25 Thread Charles Greer
ionale? Sometimes "the spec prohibits it" is not what people want to hear. Charles Greer Lead Engineer MarkLogic Corporation cgr...@marklogic.com @grechaw www.marklogic.com From: james anderson <ja...@dydra.com> Sent: Wednesday, Oct

Re: Binding graph names for WITH and USING

2017-10-25 Thread james anderson
good evening; > On 2017-10-25, at 18:48, Charles Greer wrote: > > Hi jena folks, I was surprised recently with a customer who was surprised > that my jena connector did not properly > > bind graph names as variables after WITH. > > > WITH ?g > > INSERT ... >

Re: Binding graph names for WITH and USING

2017-10-25 Thread Andy Seaborne
Hi Charles, Indeed as the spec says: [41]Modify::= ( 'WITH' iri )? ( DeleteClause InsertClause? | InsertClause ) UsingClause* 'WHERE' GroupGraphPattern Where does the value for $g come from in the example? Andy On 25/10/17 17:48, Charles Greer wrote: Hi

Binding graph names for WITH and USING

2017-10-25 Thread Charles Greer
Hi jena folks, I was surprised recently with a customer who was surprised that my jena connector did not properly bind graph names as variables after WITH. WITH ?g INSERT ... DELETE ... When I looked back at the SPARQL specs, it looks indeed true that variables are inadmissable after WITH