Class: SPARQL::Algebra::Operator::InsertData

Inherits:
Unary show all
Includes:
Update
Defined in:
lib/sparql/algebra/operator/insert_data.rb

Overview

The SPARQL UPDATE insertData operator.

The INSERT DATA operation adds some triples, given inline in the request, into the Graph Store

[38] InsertData ::= 'INSERT DATA' QuadData

Examples:

SPARQL Grammar

PREFIX : <http://example.org/ns#>
INSERT DATA { GRAPH <http://example.org/g1> { :s :p :o } }

SSE

(prefix
 ((: <http://example.org/ns#>))
 (update
  (insertData (
   (graph <http://example.org/g1> ((triple :s :p :o)))))))

See Also:

Constant Summary collapse

NAME =
[:insertData]

Constants inherited from Unary

Unary::ARITY

Constants inherited from SPARQL::Algebra::Operator

ARITY, IsURI, URI

Constants included from Expression

Expression::PATTERN_PARENTS

Instance Attribute Summary

Attributes inherited from SPARQL::Algebra::Operator

#operands

Instance Method Summary collapse

Methods included from Update

#graph_name=, #unshift, #variables

Methods inherited from Unary

#initialize

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::Queryable

Executes this upate on the given writable graph or repository.

Parameters:

  • queryable (RDF::Queryable)

    the graph or repository to write

  • options (Hash{Symbol => Object})

    any additional keyword options

Options Hash (**options):

  • debug (Boolean)

    Query execution debugging

Returns:

Raises:

  • (IOError)

    If from does not exist, unless the silent operator is present

See Also:



42
43
44
45
46
47
48
# File 'lib/sparql/algebra/operator/insert_data.rb', line 42

def execute(queryable, **options)
  operand.each do |op|
    debug(options) {"InsertData #{op.to_sxp}"}
    queryable.insert(op)
  end
  queryable
end

#to_sparql(**options) ⇒ String

Returns a partial SPARQL grammar for this term.

Returns:

  • (String)


55
56
57
58
59
# File 'lib/sparql/algebra/operator/insert_data.rb', line 55

def to_sparql(**options)
  "INSERT DATA {\n" +
    operands.first.to_sparql(top_level: false, delimiter: ". \n", **options) +
    "\n}"
end