Class: SPARQL::Algebra::Operator::PathStar
- Includes:
- Query
- Defined in:
- lib/sparql/algebra/operator/path_star.rb
Overview
Constant Summary collapse
- NAME =
:"path*"
Instance Attribute Summary
Attributes included from Query
Instance Method Summary collapse
-
#execute(queryable, **options) {|solution| ... } ⇒ Object
Path including at zero length:.
-
#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| ... } ⇒ Object
Path including at zero length:
(path :a (path* :p) :b)
into
(path :a (path? (path+ :p)) :b)
45 46 47 48 49 50 51 52 |
# File 'lib/sparql/algebra/operator/path_star.rb', line 45 def execute(queryable, **, &block) subject, object = [:subject], [:object] debug() {"Path* #{[subject, operands, object].to_sse}"} # (:x :p* :y) => (:x (:p+)? :y) query = PathOpt.new(PathPlus.new(*operands)) query.execute(queryable, **.merge(depth: [:depth].to_i + 1), &block) end |
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
58 59 60 |
# File 'lib/sparql/algebra/operator/path_star.rb', line 58 def to_sparql(**) "(#{operands.first.to_sparql(**)})*" end |