Class: SPARQL::Algebra::Operator::Reverse
- Includes:
- Query
- Defined in:
- lib/sparql/algebra/operator/reverse.rb
Overview
The SPARQL Property Path reverse (NegatedPropertySet) operator.
[92] PathEltOrInverse ::= PathElt | '^' PathElt
Constant Summary collapse
- NAME =
:reverse
Instance Attribute Summary
Attributes included from Query
Instance Method Summary collapse
-
#execute(queryable, **options) {|solution| ... } ⇒ Object
Equivliant 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
Equivliant to:
(path (:a (reverse :p) :b))
=> (bgp (:b :p :a))
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/sparql/algebra/operator/reverse.rb', line 53 def execute(queryable, **, &block) debug() {"Reverse #{operands.to_sse}"} subject, object = [:subject], [:object] # Solutions where predicate exists query = if operand.is_a?(RDF::Term) RDF::Query.new do |q| q.pattern [object, operand, subject] end else operand(0) end queryable.query(query, **.merge( subject: object, object: subject, depth: [:depth].to_i + 1 ), &block) end |
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
78 79 80 |
# File 'lib/sparql/algebra/operator/reverse.rb', line 78 def to_sparql(**) "^(" + operands.first.to_sparql(**) + ')' end |