I'm fairly new to everything semantic web related, and I'm having trouble figuring this problem out.
So, I'm uploading RDF data from .trig files to my endpoint using cURL POST requests. For example something like:
<object1> <type> <dog>
<object1> <age> "3"
This is fine, but if I update the data in my trig file to:
<object1> <type> <dog>
<object1> <age> "4"
And then reupload it, it will update the data accordingly
<object1> <type> <dog>
<object1> <age> "3"
<object1> <age> "4"
Is there a way of updating the existing triple without having to delete the entire record?
Thanks!