sundaram Shandilya
sundaram Shandilya

Reputation: 43

Is there anyway to take backup/archive of a named graph data only from aws neptune using python?

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

Answers (1)

Brad Bebee
Brad Bebee

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

Related Questions