
Next.js + AWS Neptune Analytics
This is an example of a Next.js application using AWS Neptune Analytics for creating, reading, updating, and deleting graph nodes and edges with OpenCypher queries.
How to Use
Option 1: Use an existing Neptune Analytics graph.
Retrieve your existing graph ID and ensure proper AWS credentials are configured. Provide the graph ID after clicking "Deploy" to automatically set the environment variable.
Option 2: Create a new Neptune Analytics graph.
Execute create-next-app with pnpm to bootstrap the example:
pnpm create next-app --example https://github.com/vercel/examples/tree/main/solutions/aws-neptune-analytics
- Create a new IAM role that includes permissions
neptune-graph:ReadDataViaQuery,neptune-graph:WriteDataViaQueryandneptune-graph:DeleteDataViaQuery - Save the access key and secret key or configure AWS credentials (see AWS CLI configuration guide for details).
- Create a new Neptune Analytics graph on AWS console In the Neptune Analytics Console, create a new graph with public endpoint enabled and 16 NCUs to start.
- Save the graph ID from the Neptune Analytics console
- Create an
.env.localfile and add your graph ID:
Alternatively, you can set it directly in your terminal:GRAPH_ID=your-graph-id-hereexport GRAPH_ID=your-graph-id-here - Run
pnpm devto start the Next app at http://localhost:3000
Deploy it to the cloud with Vercel (Documentation).
Credentials and Environment Variables
AWS credentials (e.g. AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY) and region configuration (e.g. AWS_REGION) can be used directly as environment variables for Vercel deployments.
The AWS SDK will automatically pick up these credentials from the environment:
const client = new NeptuneGraphClient({})
API Endpoints
The application provides a RESTful API for graph node and edge operations:
Node Operations
GET /api/node?id={id}- Retrieve a node by IDPOST /api/node- Create a new nodePUT /api/node- Update an existing nodeDELETE /api/node?id={id}- Delete a node and its relationships
Edge Operations
GET /api/edge?id={id}- Retrieve an edge by IDPOST /api/edge- Create a new edgePUT /api/edge- Update an existing edgeDELETE /api/edge?id={id}- Delete an edge
Testing
Create Node (POST)
curl -X POST http://localhost:3000/api/node \-d '{"id": "user-123", "name": "John Doe", "type": "user"}' \-H "Content-type: application/json"
Get Node (GET)
curl "http://localhost:3000/api/node?id=user-123"
Update Node (PUT)
curl -X PUT http://localhost:3000/api/node \-d '{"id": "user-123", "name": "John Smith", "type": "user", "active": true}' \-H "Content-type: application/json"
Delete Node (DELETE)
curl -X DELETE "http://localhost:3000/api/node?id=user-123"
Create Edge (POST)
curl -X POST http://localhost:3000/api/edge \-d '{"fromId": "user-123", "toId": "user-456", "type": "FOLLOWS"}' \-H "Content-type: application/json"
Get Edge (GET)
curl "http://localhost:3000/api/edge?id=follows-001"
Update Edge (PUT)
curl -X PUT http://localhost:3000/api/edge \-d '{"id": "follows-001", "since": "2024-01-15", "strength": "strong"}' \-H "Content-type: application/json"
Delete Edge (DELETE)
curl -X DELETE "http://localhost:3000/api/edge?id=follows-001"


