Created
January 28, 2013 02:44
-
-
Save AlBaker/4652608 to your computer and use it in GitHub Desktop.
Stardog Add and Remove triples example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// insert and remove | |
stardog.insert([["urn:test3", "urn:test:predicate", "hello world"], | |
["urn:test4", "urn:test:predicate", "hello world2"]]) | |
stardog.remove(["urn:test3", "urn:test:predicate", "hello world"]) | |
stardog.remove(["urn:test4", "urn:test:predicate", "hello world2"]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment