Class: SPARQL::Algebra::Operator::Ask
- Inherits:
-
Unary
- Object
- SPARQL::Algebra::Operator
- Unary
- SPARQL::Algebra::Operator::Ask
- Includes:
- Query
- Defined in:
- lib/sparql/algebra/operator/ask.rb
Overview
The SPARQL GraphPattern ask
operator.
Applications can use the ASK form to test whether or not a query pattern has a solution. No information is returned about the possible query solutions, just whether or not a solution exists.
[12] AskQuery ::= ‘ASK’ DatasetClause* WhereClause ValuesClause
Constant Summary collapse
- NAME =
[:ask]
Constants inherited from Unary
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) {|RDF::Literal::Boolean| ... } ⇒ RDF::Literal::Boolean
Executes this query on the given
queryable
graph or repository. -
#query_yields_boolean? ⇒ Boolean
Query results in a boolean result (e.g., ASK).
-
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this term.
Methods included from Query
#each_solution, #empty?, #failed?, #graph_name=, #matched?, #query_yields_solutions?, #query_yields_statements?, #unshift, #variables
Methods inherited from Unary
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::Unary
Instance Method Details
#execute(queryable, **options) {|RDF::Literal::Boolean| ... } ⇒ RDF::Literal::Boolean
Executes this query on the given queryable
graph or repository. Returns true if any solutions are found, false otherwise.
38 39 40 41 42 43 |
# File 'lib/sparql/algebra/operator/ask.rb', line 38 def execute(queryable, **) debug() {"Ask #{operands.first}"} res = boolean(!queryable.query(operands.last, **.merge(depth: [:depth].to_i + 1)).empty?) yield res if block_given? res end |
#query_yields_boolean? ⇒ Boolean
Query results in a boolean result (e.g., ASK)
47 48 49 |
# File 'lib/sparql/algebra/operator/ask.rb', line 47 def query_yields_boolean? true end |
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this term.
56 57 58 59 |
# File 'lib/sparql/algebra/operator/ask.rb', line 56 def to_sparql(**) "ASK\n" + operands.first.to_sparql(top_level: true, project: nil, **) end |