Class: SPARQL::Algebra::Operator::Project
- Inherits:
-
Binary
- Object
- SPARQL::Algebra::Operator
- Binary
- SPARQL::Algebra::Operator::Project
- Includes:
- Query
- Defined in:
- lib/sparql/algebra/operator/project.rb
Overview
The SPARQL GraphPattern order operator.
Constant Summary
- NAME =
[:project]
Constants inherited from Binary
Constants inherited from SPARQL::Algebra::Operator
Instance Attribute Summary
Attributes included from Query
Attributes inherited from SPARQL::Algebra::Operator
Instance Method Summary (collapse)
-
- (RDF::Query::Solutions) execute(queryable, options = {})
Executes this query on the given
queryablegraph or repository. -
- (Union, RDF::Query) optimize
Returns an optimized version of this query.
Methods included from Query
#context=, #each_solution, #failed?, #matched?, #unshift, #variables
Methods inherited from Binary
Methods inherited from SPARQL::Algebra::Operator
arity, base_uri, #base_uri, base_uri=, #boolean, #constant?, #eql?, #evaluatable?, evaluate, #executable?, for, #initialize, #inspect, #operand, prefixes, #prefixes, prefixes=, #to_sse, #to_sxp, #variable?
Methods included from Evaluatable
Methods included from Expression
cast, #constant?, #evaluate, for, new, open, parse, #to_sse, #variable?
Constructor Details
This class inherits a constructor from SPARQL::Algebra::Operator::Binary
Instance Method Details
- (RDF::Query::Solutions) execute(queryable, options = {})
Executes this query on the given queryable graph or repository.
Reduces the result set to the variables listed in the first operand
29 30 31 32 33 |
# File 'lib/sparql/algebra/operator/project.rb', line 29 def execute(queryable, = {}) @solutions = operands.last. execute(queryable, .merge(:depth => [:depth].to_i + 1)). project(*(operands.first)) end |
- (Union, RDF::Query) optimize
Returns an optimized version of this query.
Return optimized query
41 42 43 |
# File 'lib/sparql/algebra/operator/project.rb', line 41 def optimize operands = operands.map(&:optimize) end |