I have a problem with a query in SPARQL for a Sesame triplestore. I enter this query in "SPARQL Update" option of the Sesame workbench:
INSERT DATA { <http://www.example#test> rdfs:label "test_label"@en }
I would have this RDF result:
<rdf:Description rdf:about="http://www.example#test">
<rdfs:label xml:lang="en">test_label</rdfs:label>
</rdf:Description>
But I don't know how write the query in order to add xml:lang="en"
.
With my query, I have this error:
org.openrdf.query.UpdateExecutionException: org.openrdf.sail.SailException:
org.openrdf.rio.RDFParseException: Expected ':', found ' '
I don't manage to find the right syntax for my query.