Class: SPARQL::Algebra::Operator::NotOneOf
- Inherits:
-
SPARQL::Algebra::Operator
- Object
- SPARQL::Algebra::Operator
- SPARQL::Algebra::Operator::NotOneOf
- Includes:
- Query
- Defined in:
- lib/sparql/algebra/operator/notoneof.rb
Overview
The SPARQL Property Path notoneof
(NegatedPropertySet) operator.
[96] PathOneInPropertySet ::= iri | ‘a’ | ‘^’ ( iri | ‘a’ )
Constant Summary collapse
- NAME =
:notoneof
Constants inherited from SPARQL::Algebra::Operator
Constants included from Expression
Instance Attribute Summary
Attributes included from Query
Attributes inherited from SPARQL::Algebra::Operator
Instance Method Summary collapse
-
#execute(queryable, **options) {|solution| ... } ⇒ Object
Equivalant 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
Methods inherited from SPARQL::Algebra::Operator
#aggregate?, arity, #base_uri, base_uri, base_uri=, #bind, #boolean, #constant?, #deep_dup, #each_descendant, #eql?, #evaluatable?, evaluate, #executable?, #first_ancestor, for, #initialize, #inspect, #ndvars, #node?, #operand, #optimize, #optimize!, #parent, #parent=, #prefixes, prefixes, prefixes=, #rewrite, #to_binary, to_sparql, #to_sxp, #to_sxp_bin, #validate!, #variable?, #variables, #vars
Methods included from Expression
cast, #constant?, #evaluate, extension, extension?, extensions, for, #invalid?, new, #node?, open, #optimize, #optimize!, parse, register_extension, #to_sxp_bin, #valid?, #validate!, #variable?
Constructor Details
This class inherits a constructor from SPARQL::Algebra::Operator
Instance Method Details
#execute(queryable, **options) {|solution| ... } ⇒ Object
all operands are terms, and not operators, so this can be done by filtering results usin
Equivalant to:
(path (:x (noteoneof :p :q) :y)) => (filter (notin ??p :p :q) (bgp (:x ??p :y)))
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/sparql/algebra/operator/notoneof.rb', line 44 def execute(queryable, **, &block) debug() {"NotOneOf #{operands.to_sse}"} subject, object = [:subject], [:object] v = RDF::Query::Variable.new(distinguished: false) bgp = RDF::Query.new do |q| q.pattern [subject, v, object] end query = Filter.new(NotIn.new(v, *operands), bgp) queryable.query(query, **.merge(depth: [:depth].to_i + 1)) do |solution| solution.bindings.delete(v.to_sym) debug() {"(solution)-> #{solution.to_h.to_sse}"} block.call(solution) end end |
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
65 66 67 |
# File 'lib/sparql/algebra/operator/notoneof.rb', line 65 def to_sparql(**) "!(" + operands.to_sparql(delimiter: ' | ', **) + ')' end |