Is there a way to rewrite INSERT, MODIFY or DELETE sparql using ARQ Jena Algebra?

126 Views Asked by At

I found some SPARQL query manipulation only for SELECT, ASK, CONSTRUCT https://jena.apache.org/documentation/query/manipulating_sparql_using_arq.html and https://jena.apache.org/documentation/query/algebra.html but could not find anything regarding UPDATE operations

Any examples I can look at?

Thanks.

1

There are 1 best solutions below

0
On

It seems you can use org.apache.jena.sparql.syntax.syntaxtransform.UpdateTransformOps

I have the same requirement and as the documentation is super limited here, I'm still using debug mode to see how I can achieve my goal. You can inspire from this, if you have a better solution I would be very interested.

Something like that:

public class OpPermissionTransformer extends ElementTransformCopyBase {
    @Override
    public Element transform(ElementNamedGraph el, Node gn, Element elt1) {
       return elt1;
    }

}
 UpdateRequest modified = UpdateTransformOps.transform(update, new OpPermissionTransformer(), new NodeTransformExpr(n -> { 
    // modify the node as you wish
    return n;
});