Reputation: 43
Neptune has a feature of snapshot but instead of taking backup for a single named graph, it takes backup of the complete cluster. Is there anyway it can specifically get the backup of give graph name only?(sparql)
Upvotes: 1
Views: 265
Reputation: 121
Amazon Neptune now supports the Graph Store Protocol and you can use that as another option.
curl --request GET \
'https://your-neptune-endpoint:port/sparql/gsp/?graph=http%3A//www.example.com/named/graph'
Upvotes: 1