We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3885a8a + 9d0f450 commit d821fb3Copy full SHA for d821fb3
README.md
@@ -73,15 +73,15 @@ This is a [Ruby][] implementation of a [SPARQL][] client for [RDF.rb][].
73
data = RDF::Graph.new do |graph|
74
graph << [RDF::URI('http://example.org/jhacker'), RDF::Vocab::FOAF.name, "J. Random Hacker"]
75
end
76
- insert_data(data)
+ sparql.insert_data(data)
77
78
### Deleting data from a graph
79
80
# DELETE DATA { <http://example.org/jhacker> <http://xmlns.com/foaf/0.1/name> "J. Random Hacker" .}
81
82
83
84
- delete_data(data)
+ sparql.delete_data(data)
85
86
## Documentation
87
0 commit comments