Class: SPARQL::Algebra::Operator::DeleteData
- Includes:
- Update
- Defined in:
- lib/sparql/algebra/operator/delete_data.rb
Overview
The SPARQL UPDATE deleteData operator.
The DELETE DATA operation removes some triples, given inline in the request, if the respective graphs in the Graph Store contain those
[39] DeleteData ::= 'DELETE DATA' QuadData
Constant Summary collapse
- NAME =
[:deleteData]
Instance Method Summary collapse
-
#execute(queryable, **options) ⇒ RDF::Queryable
Executes this upate on the given
writablegraph or repository. -
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this term.
Methods included from Update
#empty?, #graph_name=, #unshift, #variables
Instance Method Details
#execute(queryable, **options) ⇒ RDF::Queryable
Executes this upate on the given writable graph or repository.
42 43 44 45 46 47 48 |
# File 'lib/sparql/algebra/operator/delete_data.rb', line 42 def execute(queryable, **) operand.each do |op| debug() {"DeleteData #{op.to_sxp}"} queryable.delete(op) end queryable end |
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this term.
55 56 57 58 59 |
# File 'lib/sparql/algebra/operator/delete_data.rb', line 55 def to_sparql(**) "DELETE DATA {\n" + operands.first.to_sparql(top_level: false, delimiter: ". \n", **) + "\n}" end |