Generates a SPARQL DELETE update removing triples from the graph store.
Without a where argument, produces a ground delete data operation removing the content triples verbatim. With a
where argument, produces a delete … where operation removing, for each solution of the pattern, the triples the
content template instantiates. Pass content as a single serialised block or a list of clauses joined into a
fragment.
Note
Named deleet because delete is a reserved word.
Parameters
content: string|readonlystring[]
The triples to remove: ground triples for delete data, or a triple template for delete … where
Optionalwhere: string
The optional where clause selecting solutions to instantiate against; omit
for a ground form
Generates a SPARQL
DELETEupdate removing triples from the graph store.Without a
whereargument, produces a grounddelete dataoperation removing thecontenttriples verbatim. With awhereargument, produces adelete … whereoperation removing, for each solution of the pattern, the triples thecontenttemplate instantiates. Passcontentas a single serialised block or a list of clauses joined into a fragment.Named
deleetbecausedeleteis a reserved word.