Hi Justin,

INSERT DATA is not followed by a WHERE clause - just try removing that WHERE line - none of the variables there are used in the INSERT clause anyway.

https://www.w3.org/TR/2013/REC-sparql11-update-20130321/#insertData

It probably fails to parse this on its first attempt and then falls back to trying the query parser, thus the error message.

Holger


On 11/17/2020 10:01 AM, Justin Lien wrote:
Hello,

I'm attempting to insert new triples via the SPARQL endpoint using the following query:

INSERT DATA
    { GRAPH <urn:x-evn-master:update_test> { update_test:concepts
        skos:hasTopConcept  update_test:one .
    update_test:one  skos:prefLabel  "one" . } }
WHERE { ?s ?p ?o }

and receive the following error:

**Invalid SPARQL query string: Encountered " <INSERT_DATA> "INSERT DATA "" at line 5, column 1. Was expecting one of: "base" ... "prefix" ... "select" ...
"json" ... "describe" ... "construct" ... "ask" ... .**

We have Enable SPARQL updates set to true in the Server Configuration Parameters and I'm also able to add triples with a slightly modified query

INSERT
{
    update_test:concepts
        skos:hasTopConcept  update_test:six .
    update_test:six skos:prefLabel  "six" .
  }
WHERE {
  ?s ?p ?o .
}

using the SPARQL query feature in the taxonomy without issue.

Any ideas on how to resolve?

Thank you,

Justin

------------------------------------------------------------------------
This email and any attachments may contain confidential information. If you believe that you have received it in error, please delete the email and attachments and then notify Tempus by calling *800.739.4137*. -- You received this message because you are subscribed to the Google Groups "TopBraid Suite Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected] <mailto:[email protected]>. To view this discussion on the web visit https://groups.google.com/d/msgid/topbraid-users/CANbmBy7EJaedhytxVLCvxy2Gz-MQpSvRDG1RPNXEw5u0Nmo1CA%40mail.gmail.com <https://groups.google.com/d/msgid/topbraid-users/CANbmBy7EJaedhytxVLCvxy2Gz-MQpSvRDG1RPNXEw5u0Nmo1CA%40mail.gmail.com?utm_medium=email&utm_source=footer>.

--
You received this message because you are subscribed to the Google Groups "TopBraid 
Suite Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/topbraid-users/4663bb3e-7091-dae2-e5a4-55273c0dd854%40topquadrant.com.

Reply via email to