Class: SPARQL::Algebra::Operator::Reduced
- Includes:
- Query
- Defined in:
- lib/sparql/algebra/operator/reduced.rb
Overview
The SPARQL GraphPattern reduced operator.
[9] SelectClause ::= 'SELECT' ( 'DISTINCT' | 'REDUCED' )? ( ( Var | ( '(' Expression 'AS' Var ')' ) )+ | '*' )
Constant Summary collapse
- NAME =
[:reduced]
Instance Attribute Summary
Attributes included from Query
Instance Method Summary collapse
-
#execute(queryable, **options) {|solution| ... } ⇒ RDF::Query::Solutions
Executes this query on the given
queryablegraph 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) {|solution| ... } ⇒ RDF::Query::Solutions
Executes this query on the given queryable graph or repository.
Removes duplicate solutions from the solution set.
42 43 44 45 46 47 |
# File 'lib/sparql/algebra/operator/reduced.rb', line 42 def execute(queryable, **, &block) @solutions = operands.last. execute(queryable, **.merge(depth: [:depth].to_i + 1)).reduced @solutions.each(&block) if block_given? @solutions end |
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
54 55 56 |
# File 'lib/sparql/algebra/operator/reduced.rb', line 54 def to_sparql(**) operands.first.to_sparql(reduced: true, **) end |