I have used the below code to load the data in to neptune db access.
curl -X POST \
-H 'Content-Type: application/json' \
https://your-neptune-endpoint:port/loader -d '
{
"source" : "s3://bucket-name/object-key-name",
"format" : "format",
"iamRoleArn" : "arn:aws:iam::account-id:role/role-name",
"region" : "region",
"failOnError" : "FALSE",
"parallelism" : "MEDIUM",
"updateSingleCardinalityProperties" : "FALSE",
"queueRequest" : "TRUE",
"dependencies" : ["load_A_id", "load_B_id"]
}'
i have an csv file in s3 bucket which i am trying to add in the neptune DB. This gave me the response 200. But I could not se any data in my neptune DB instance in aws. Where do i view the uploaded data in aws neptune DB?
And also does loading data in to neptune DB always needs an s3 in the middle?