Learn R Programming

roxigraph (version 0.1.0)

rdf_store_remove: Remove a triple from the store

Description

Remove a triple from the store

Usage

rdf_store_remove(store_idx, subject, predicate, object, graph)

Value

No return value, called for side effects (removing triples from the store)

Arguments

store_idx

Store index

subject

Subject IRI or blank node

predicate

Predicate IRI

object

Object

graph

Optional graph name IRI

Examples

Run this code
store <- rdf_store_new()
rdf_store_insert(store, "", "", '"val"', NULL)
rdf_store_remove(store, "", "", '"val"', NULL)

Run the code above in your browser using DataLab