Skip to content

Instantly share code, notes, and snippets.

View robfrank's full-sized avatar
🏠
Working from home

Roberto Franchini robfrank

🏠
Working from home
View GitHub Profile
curl -G "http://<YOUR NEPTUNE ENDPOINT>.neptune.amazonaws.com:8182/loader/<LOAD ID>
{
    "status" : "200 OK",
    "payload" : {
        "feedCount" : [
            {
 "LOAD_COMPLETED" : 6
@robfrank
robfrank / neptuneCount.md
Last active June 21, 2018 09:21
Neptune query
 curl -G "http://<YOUR NEPTUNE CLUSTER>.neptune.amazonaws.com:8182?gremlin=g.V().count()"
{
   "requestId": "aeb210d0-04ee-0877-c424-7856d65e2d2f",
   "status": {
       "message": "",
"code": 200,
@robfrank
robfrank / neptuneLoad.md
Last active June 21, 2018 09:20
neptune load api
curl -X POST \
    -H 'Content-Type: application/json' \
    http://<YOUR NEPTUNE ENDPOINT>.<YOUR REGION>.neptune.amazonaws.com:8182/loader -d '
    {
      "source" : "s3://<YOUR S3 BUCKET>/",
      "accessKey" : "<YOUR ACCESS KEY>",
      "secretKey" : "<YOUR SECRET KEY>",
      "format" : "csv",
 "region" : "",