Class: SPARQL::Algebra::Operator::Alt
- Includes:
- Query
- Defined in:
- lib/sparql/algebra/operator/alt.rb
Overview
The SPARQL Property Path alt (Alternative Property Path) operator.
Let P and Q be property path expressions.
eval(Path(X, alt(P,Q), Y)) = Union(eval(Path(X, P, Y)), eval(Path(X, Q, Y)))
[89] PathAlternative ::= PathSequence ( '|' PathSequence )*
Constant Summary collapse
- NAME =
:alt
Instance Attribute Summary
Attributes included from Query
Instance Method Summary collapse
-
#execute(queryable, **options) {|solution| ... } ⇒ Object
Equivalent to:.
-
#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
Equivalent to:
(path x (alt :p :q) y)
=> (union (bgp (x :p y)) (bgp (x :q y)))
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
# File 'lib/sparql/algebra/operator/alt.rb', line 51 def execute(queryable, **, &block) subject, object = [:subject], [:object] debug() {"Alt #{[subject, operands, object].to_sse}"} # Solutions where predicate exists qa = if operand(0).is_a?(RDF::Term) RDF::Query.new do |q| q.pattern [subject, operand(0), object] end else operand(0) end qb = if operand(1).is_a?(RDF::Term) RDF::Query.new do |q| q.pattern [subject, operand(1), object] end else operand(1) end query = Union.new(qa, qb) queryable.query(query, **.merge(depth: [:depth].to_i + 1), &block) end |
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
81 82 83 |
# File 'lib/sparql/algebra/operator/alt.rb', line 81 def to_sparql(**) "(#{operands.first.to_sparql(**)}|#{operands.last.to_sparql(**)})" end |