Class: SPARQL::Algebra::Operator::Using
- Includes:
- Query
- Defined in:
- lib/sparql/algebra/operator/using.rb
Overview
The SPARQL UPDATE using operator.
The USING and USING NAMED clauses affect the RDF Dataset used while evaluating the WHERE clause. This describes a dataset in the same way as FROM and FROM NAMED clauses describe RDF Datasets in the SPARQL 1.1 Query Language
[44] UsingClause ::= 'USING' ( iri | 'NAMED' iri )
Constant Summary collapse
- NAME =
:using
Instance Attribute Summary
Attributes included from Query
Instance Method Summary collapse
-
#execute(queryable, **options, &block) ⇒ RDF::Queryable
Executes this upate on the given
writablegraph or repository. -
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
Methods included from Query
#each_solution, #empty?, #failed?, #graph_name=, #matched?, #query_yields_boolean?, #query_yields_solutions?, #query_yields_statements?, #unshift, #variables
Instance Method Details
#execute(queryable, **options, &block) ⇒ RDF::Queryable
Executes this upate on the given writable graph or repository.
Delegates to Dataset
68 69 70 71 |
# File 'lib/sparql/algebra/operator/using.rb', line 68 def execute(queryable, **, &block) debug() {"Using"} Dataset.new(*operands).execute(queryable, **.merge(depth: [:depth].to_i + 1), &block) end |
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
78 79 80 81 82 83 84 |
# File 'lib/sparql/algebra/operator/using.rb', line 78 def to_sparql(**) str = "\n" + operands.first.map do |op| "USING #{op.to_sparql(**)}\n" end.join("") content = operands.last.to_sparql(top_level: false, **) str << Operator.to_sparql(content, project: nil, **) end |